Getting the list of Banks for Premium Bank Account

Bank List Verification

GET {{baseurl}}v2/api/identity/ng/premium-bav/bank-list

Headers

Name
Type
Description

token*

String

API secret token

Bank List Retrieval

This is a request that shows the list of all the Nigerian banks and their code. The bank code is required to do a Bank account Verification.

{
    "success": true,
    "statusCode": 200,
    "message": "success",
    "data": [
        {
            "name": "Access Bank",
            "code": "044"
        },
        {
            "name": "Citibank",
            "code": "023"
        },
        {
            "name": "Access Bank (Diamond)",
            "code": "063"
        }
       ....
    ],
    "links": []
}

Last updated