For the complete documentation index, see llms.txt. This page is also available as Markdown.

List Bank Codes

An API to help you get information about the list of banks allowed for the country you want to work.


GET /v2/list-banks

Request

curl -v --location --request GET 'https://sandbox.smartfastpay.com/v2/list-banks?country=ECU' \
    --header 'Content-Type: application/json' \
    --header 'Authorization: Bearer <Access-Token>' \'

Parameters details

Parameter
Type
Required
Description

country

string (3) min: 3 | max: 3

yes

This parameter is required. Please, choose a country. Eg.: BRA, ARG, BOL, CHL, COL, ECU, MEX, PER...

Response

{
    "requestId": "167ffff1-b58b-4d1b-909e-ff714c594967",
    "data": [
        {
            "code": "0017",
            "name": "Banco_de_guayaquil_sa",
            "description": "Banco de Guayaquil SA",
        },
        {
            "code": "0024",
            "name": "Banco_city_bank",
            "description": "Banco City Bank",
        }
    ]
}

Response details

Parameter
Description

code

Code of the Bank

name

Name of the Bank - Slug

description

Name of the Bank

Last updated