> For the complete documentation index, see [llms.txt](https://docs.localramp.co/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.localramp.co/crypto-off-ramp/direct-api-sell/get-supported-payment-methods.md).

# Get Supported Payment Methods

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

{% code overflow="wrap" %}

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

{% endcode %}

With the following header

```
x-auth-token: <PUBLIC_KEY>
```

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

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