> For the complete documentation index, see [llms.txt](https://monicredit.gitbook.io/mc-api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://monicredit.gitbook.io/mc-api/disbursement/bank-list.md).

# Bank List

### Bank List

Introduction

The Bank List API offers comprehensive access to a diverse array of supported banks. It provides developers with detailed information and extensive list of available banks.

EndPoint: GET - {{baseUrl}}/v1/banking/bank-list

```sh
//A code snippet of how to consume the API

curl -X GET \
  {{baseUrl}}/v1/banking/bank-list \
  -H "Accept: application/json" \
  -H "Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJodHRwczovL2RlbW8ubW9uaWNyZWRpdC5jb20vYXBpL3YxL2NvcmUvYXV0aC9sb2dpbiIsImlhdCI6MTY2ODk2NzQ0MywiZXhwIjoxNjY4OTcxMDQzLCJuYmYiOjE2Njg5Njc0NDMsImp0aSI6ImF0UE9GVHE4cU4yN2lBWlciLCJzdWIiOiJVU0FETUlOIiwicHJ2IjoiMjNiZDVjODk0OWY2MDBhZGIzOWU3MDFjNDAwODcyZGI3YTU5NzZmNyJ9.shrbQUV29vXRF30qMeBN3zxlc5JXd03QyMeD6ekzudU"
```

Response

```json
{
    "status": true,
    "data": [
        {
            "id": 1,
            "name": "Access Bank",
            "code": "002",
            "slug": null,
            "bank_shortname": "Access",
            "logo": "/banks/access.png"
        },
		]
}
```
