# List Bank Codes

***

### <mark style="color:green;">GET</mark> /v2/list-banks

{% hint style="info" %}
**Request**
{% endhint %}

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

{% hint style="info" %}
**Parameters details**
{% endhint %}

<table><thead><tr><th width="138.33333333333331">Parameter</th><th width="197" align="center">Type</th><th width="103">Required</th><th>Description</th></tr></thead><tbody><tr><td><mark style="color:red;"><code>country</code></mark></td><td align="center"><mark style="color:red;"><code>string (3)</code></mark><br><mark style="color:red;"><code>min: 3 | max: 3</code></mark></td><td><strong>yes</strong></td><td>This parameter is required. Please, choose a country.<br><br><strong>Eg.: BRA, ARG, BOL, CHL, COL, ECU, MEX, PER...</strong></td></tr></tbody></table>

{% hint style="info" %}
**Response**
{% endhint %}

```bash
{
    "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",
        }
    ]
}
```

{% hint style="info" %}
**Response details**
{% endhint %}

<table><thead><tr><th width="189">Parameter</th><th>Description</th></tr></thead><tbody><tr><td><mark style="color:red;"><code>code</code></mark></td><td>Code of the Bank</td></tr><tr><td><mark style="color:red;"><code>name</code></mark></td><td>Name of the Bank - Slug</td></tr><tr><td><mark style="color:red;"><code>description</code></mark></td><td>Name of the Bank</td></tr></tbody></table>
