> 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 %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.bellmfb.com/references/bank-transfer/bank-list.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
