> ## Documentation Index
> Fetch the complete documentation index at: https://docs.lux-core.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Supported Banks

> Complete list of banks and financial institutions supported by LuxCore

# Supported Banks

LuxCore supports payments through the following banks and financial institutions, organized by country.

<Note>
  The `bank_name` field in payment responses (`bank_details.bank_name`) and withdrawal requests (`customer_data.payout.bank_name`) corresponds to the **Name** column below.
</Note>

## Argentina (AR)

| Name                         | Code              | Type       |
| ---------------------------- | ----------------- | ---------- |
| Banco de la Nación Argentina | `BNA`             | Commercial |
| Banco Galicia                | `GALICIA`         | Commercial |
| CencoPay                     | `CENCOPAY`        | Commercial |
| Fiwind                       | `fiwind`          | Commercial |
| Lemon Cash                   | `LEMON CASH`      | Commercial |
| Mercado Pago                 | `mercadopago`     | Commercial |
| Naranja X                    | `naranjax`        | Commercial |
| PersonaPay                   | `PPAY`            | Commercial |
| Universal Coins              | `UNIVERSAL_COINS` | Commercial |

## Brazil (BR)

| Name            | Code     | Type       |
| --------------- | -------- | ---------- |
| Banco do Brasil | `BRASIL` | Commercial |
| Itaú Unibanco   | `ITAU`   | Commercial |

## Chile (CL)

| Name           | Code    | Type       |
| -------------- | ------- | ---------- |
| Banco de Chile | `CHILE` | Commercial |

## Colombia (CO)

| Name        | Code          | Type       |
| ----------- | ------------- | ---------- |
| Bancolombia | `BANCOLOMBIA` | Commercial |

## Georgia (GE)

| Name            | Code  | Type       |
| --------------- | ----- | ---------- |
| Bank of Georgia | `BOG` | Commercial |
| TBC Bank        | `TBC` | Commercial |

## Mexico (MX)

Mexican banks include a CLABE prefix — the first 3 digits of a [CLABE](https://en.wikipedia.org/wiki/CLABE) number identify the bank.

| Name                   | Code        | CLABE Prefix | Type       |
| ---------------------- | ----------- | ------------ | ---------- |
| BBVA México            | `BBVA`      | `012`        | Commercial |
| Banco Santander México | `SANTANDER` | `014`        | Commercial |
| Banorte                | `BANORTE`   | `072`        | Commercial |
| Citibanamex            | `BANAMEX`   | `002`        | Commercial |

## Peru (PE)

| Name                      | Code  | Type       |
| ------------------------- | ----- | ---------- |
| Banco de Crédito del Perú | `BCP` | Commercial |

## Uruguay (UY)

| Name | Code  | Type       |
| ---- | ----- | ---------- |
| PREX | `PRX` | Commercial |

***

## Usage in API

### Deposit responses

When a deposit payment is created, `bank_details.bank_name` contains the name of the bank where the customer should send funds:

```json theme={null}
{
  "bank_details": {
    "bank_name": "Banco Nacion",
    "account_holder": "LuxCore Platform S.A.",
    "account_number": "0110012345678901234567",
    "amount": "150000",
    "currency": "ARS"
  }
}
```

### Withdrawal requests

For withdrawals, pass `bank_name` in `customer_data.payout` to specify the recipient's bank:

```json theme={null}
{
  "amount": 150000,
  "currency": "ARS",
  "customer_data": {
    "requested_payment_type": "withdrawal",
    "payout": {
      "bank_name": "BBVA Argentina",
      "bank_code": "BBVA",
      "bank_account": "0000003100010000000001",
      "recipient_name": "Juan Perez"
    }
  }
}
```
