> ## Documentation Index
> Fetch the complete documentation index at: https://docs.reeple.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get banks

> List banks for a given currency

Fetch the list of banks for a currency.

## Endpoint

```
GET https://api-v3.reeple.ai/banks?{currency}
```

| Field      | Type   | Description             |
| ---------- | ------ | ----------------------- |
| `currency` | String | `NGN`, `GBP`, or `USD`. |

## Response

```json theme={null}
{
  "success": true,
  "statusCode": 200,
  "message": "Fetched list of bank accounts",
  "data": [
    { "id": "1", "bankCode": "99901", "bankName": "Gateway 2 Bank" },
    { "id": "2", "bankCode": "10023", "bankName": "Gateway 1 Bank" }
  ]
}
```

<Note>
  This response isn't paginated — the bank list is small, cached, and mainly used to populate a dropdown. Paginate client-side if you need to.
</Note>
