> 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-banks.md).

# Get Supported Banks

Before doing an instant sell transaction, you'll need to know the supported banks for payouts. Make a **GET** request to the following endpoint.

{% code overflow="wrap" %}

```url
https://api.localramp.co/v1/transaction/sell/supported-banks?country=NG
```

{% endcode %}

The request takes `country`  as a query param.

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": "9 Payment Service Bank",
            "code": "000802"
        },
        {
            "name": "ZINTERNET - KONGAPAY",
            "code": "939"
        }
    ]
}

```
