Skip to main content
GET
/
api
/
payouts
/
banks
/
{countryCode}
Get bank details by country
curl --request GET \
  --url https://test.digitaltermination.com/api/payouts/banks/{countryCode} \
  --header 'Authorization: Bearer <token>'
{
  "code": 200,
  "banks": [
    {
      "name": "ACCESS BANK",
      "code": "300329",
      "country": "GHA"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

countryCode
string
required

The ISO country code for which to retrieve bank details.

Example:

"US"

Response

A list of banks in the specified country.

code
number
Example:

200

banks
object[]