Payout
Bank List
Nigerian Bank List
Get a list of all supported banks and their codes.
Endpoint: /bank_list
Method: GET
Header
Param | Type | Required? | Decription |
---|---|---|---|
authorization | string | Yes | Set value to Bearer SECRET_KEY |
Path Parameters
Param | Type | Required? | Decription |
---|---|---|---|
currency | string | Yes | Default value is NGN when not set |
Sample Post
curl https://api.budpay.com/api/v2/bank_list
-H "Authorization: Bearer YOUR_SECRET_KEY"
-X GET
Sample Post with currency specified
curl https://api.budpay.com/api/v2/bank_list/KES
-H "Authorization: Bearer YOUR_SECRET_KEY"
-X GET
Sample Response
{
"success": true,
"message": "Bank list retrieved",
"currency": "NGN",
"data": [
{
"bank_name": "9PAYMENT SERVICE BANK",
"bank_code": "120001"
},
{
"bank_name": "AB MICROFINANCE BANK",
"bank_code": "090270"
},
{
"bank_name": "ABBEY MORTGAGE BANK ",
"bank_code": "070010"
},
{
"bank_name": "ABUCOOP MICROFINANCE BANK",
"bank_code": "090424"
},
{
"bank_name": "ACCESS BANK",
"bank_code": "000014"
},
...
{
"bank_name": "WEMA BANK",
"bank_code": "000017"
},
{
"bank_name": "ZENITH BANK",
"bank_code": "000015"
}
]
}