> For the complete documentation index, see [llms.txt](https://docs.bellmfb.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.bellmfb.com/references/bank-transfer/bank-list.md).

# Bank List

## Get Bank List

<mark style="color:green;">`GET`</mark> `/v1/transfer/banks`

**Headers**

| Name          | Value              |
| ------------- | ------------------ |
| Content-Type  | `application/json` |
| Authorization | `Bearer <token>`   |
|               |                    |

**Body**

**Response**

{% tabs %}
{% tab title="200" %}

````json
{
    "success": true,
    "message": "Banks fetched successfully",
    "data": [
        {
            "institutionCode": "110005",
            "institutionName": "3LINE CARD MANAGEMENT LIMITED",
            "category": "11"
        },
        {
            "institutionCode": "120001",
            "institutionName": "9 payment service Bank",
            "category": "12"
        },
        {
            "institutionCode": "050005",
            "institutionName": "AAA FINANCE",
            "category": "5"
        },
        {
            "institutionCode": "090270",
            "institutionName": "AB MICROFINANCE BANK",
            "category": "9"
        },
        {
            "institutionCode": "070010",
            "institutionName": "ABBEY MORTGAGE BANK",
            "category": "7"
        },
        {
            "institutionCode": "090260",
            "institutionName": "ABOVE ONLY MICROFINANCE BANK",
            "category": "9"
        },
        {
            "institutionCode": "090640",
            "institutionName": "ABSU Microfinance Bank",
            "category": "9"
        },
        {
            "institutionCode": "090197",
            "institutionName": "ABU MICROFINANCE BANK",
            "category": "9"
        },
        {
            "institutionCode": "090424",
            "institutionName": "Abucoop  Microfinance Bank",
            "category": "9"
        },
        {
            "institutionCode": "090545",
            "institutionName": "ABULESORO MICROFINANCE BANK LTD",
            "category": "9"
        },
        {
            "institutionCode": "090202",
            "institutionName": "ACCELEREX NETWORK",
            "category": "11"
        },
        {
            "institutionCode": "000014",
            "institutionName": "ACCESS BANK",
            "category": "2"
        },
        {
            "institutionCode": "000005",
            "institutionName": "ACCESS BANK PLC (DIAMOND)",
            "category": "2"
        },
        {
            "institutionCode": "100013",
            "institutionName": "ACCESSMONEY",
            "category": "10"
        }
```
    ]
}
````

{% endtab %}

{% tab title="400" %}

```json
{
  "success": false,
  "message": "Request Un-Successful",
  "data": null
}
```

{% endtab %}
{% endtabs %}
