Skip to main content
GET
/
v1
/
accounts
/
banks
List banks
curl --request GET \
  --url https://api.example.com/v1/accounts/banks \
  --header 'Authorization: Bearer <token>'
[
  {
    "bankCode": "058",
    "name": "GTBank"
  }
]

Authorizations

Authorization
string
header
required

Enter Auth0 JWT token

Query Parameters

country
enum<string>

ISO 3166-1 alpha-2 country code. Supported values: NG (default), GH.

Available options:
NG,
GH
Example:

"GH"

Response

List of banks sorted alphabetically by name

bankCode
string
required

Bank code

Example:

"058"

name
string
required

Bank name

Example:

"GTBank"