Get Supported Payment Methods

To get the supported sell payment methods, make a GET request to this endpoint

https://api.localramp.co/v1/transaction/sell/payment-methods?currency=NGN&country_code=NG

With the following header

x-auth-token: <PUBLIC_KEY>

If the API call is successful, LocalRamp returns the following response:

{
    "status": "success",
    "data": [
        {
            "name": "Bank transfer",
            "active": true,
            "id":"instant_p2p"
        }
    ]
}

Last updated