Get Banks
Read on populating banks available for payout
The bank and branch APIs provide the list of banks and their respective branches that are available in the destination country.
Query Parameter
Request Sample
Response Sample
Name | Type | Required | Description |
country | String | No |
curl --location --request GET '{{url}}/banks' \
--header 'X-Client-Id: {{client_id}}' \
--header 'X-Client-Secret: {{client_secret}}' \
--header 'Content-Type: application/json'
{
"branches": [
{
"id": 169,
"name": "Default Branch"
}
],
"country": "CO",
"id": 126,
"name": "Banco Santander De Negocios",
"txn_supported_types": [
"C2C",
"B2B",
"B2C"
]
},
{
"branches": [
{
"id": 101,
"name": "Default Branch"
}
],
"country": "MX",
"id": 58,
"name": "All Banks / Payment Type: Clabe",
"txn_supported_types": [
"C2C"
]
}
Request Sample
Response Sample
curl --location --request GET '{{url}}/banks/{bank_id}' \
--header 'X-Client-Id: {{client_id}}' \
--header 'X-Client-Secret: {{client_secret}}' \
--header 'Content-Type: application/json'
{
"branches": [
{
"id": 169,
"name": "Default Branch"
}
],
"country": "CO",
"id": 126,
"name": "Banco Santander De Negocios",
"receiving_currency": [
"COP"
],
"txn_supported_types": [
"C2C",
"B2B",
"B2C"
]
}
Last modified 1yr ago