ENSC Business API
Business DashboardWebsite
  • Introduction
    • Use Cases
    • Configurations
  • Ready To Integrate?
  • Getting Started
    • Security
      • Generating Keys
      • Encrypting / Decrypting Request
  • Integrations
    • Contract Address
    • Enums
    • Authorization
    • Endpoints
      • Get Bank Lists
      • Token Balance
      • Token Approval
      • Mint
      • Mint Allocation
      • Redeem
      • Transfer
      • Withdraw
      • Verify Payout/Withdrawal
  • Libraries/SDKs
    • Client Libraries
Powered by GitBook
On this page
  1. Integrations
  2. Endpoints

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
  ]
}
{
  "status": 400,
  "message": "Failed to fetch banks",
  "data": null
}
PreviousEndpointsNextToken Balance

Last updated 3 months ago