Get Bank Lists

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>

Response

{
  "status": 200,
  "message": "Banks fetched successfully",
  "data": [
    {
      "id": 1,
      "code": "044",
      "name": "Access Bank Nigeria"
    },
    {
      "id": 2,
      "code": "023",
      "name": "Citibank Nigeria"
    }
    // ... additional banks
  ]
}

Last updated