Banks

Read on retrieving available banks

The bank and branch APIs provide the list of banks and their respective branches that are available in the destination country.

Bank Object

FieldTypeDescription

id

integer

ID

name

string

Name of the bank

country

string

3-character ISO code of the country

receiving_currency

List

List of 3-character ISO code of the currency supported by the bank.

branches

List

List of branch objects.

Branch Object

FieldTypeDescription

bank_id

integer

Bank ID

bank_name

string

Name of the bank

branch_id

integer

Branch ID

branch_name

string

Name of the branch

address

string

Branch address

city

string

Branch city

state

string

Branch state or province

Get bank list

GET /v2/banks

FieldRequiredTypeDescription

countryId

No

integer

Country ID

countryCode

No

String

ISO Code of a Country

Get banks by country

GET /v2/banks?countryCode={{countryCode}}

curl -X GET {{url}}/v2/banks?countryCode=KEN \
  -H 'Accept: application/json' \
  -H 'X-Client-Id: clientid' \
  -H 'X-Client-Secret: clientsecret'

Get banks by ID

GET /v2/banks/{{bankId}}

FieldRequiredTypeDescription

bankId

Yes

integer

Bank ID

Last updated