GET /banks
Retrieves a list of supported banks for Nigerian transactions. This endpoint fetches bank data and returns details such as bank ID, code, and name.
Headers
Response
- 200
- 400
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
GET /banks
Retrieves a list of supported banks for Nigerian transactions. This endpoint fetches bank data and returns details such as bank ID, code, and name.
Headers
| Name | Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer <your_api_key> |
{
"status": 200,
"message": "Banks fetched successfully",
"data": [
{
"id": 1,
"code": "044",
"name": "Access Bank Nigeria"
},
{
"id": 2,
"code": "023",
"name": "Citibank Nigeria"
}
// ... additional banks
]
}
{
"status": 400,
"message": "Failed to fetch banks",
"data": null
}