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

# Currencies

## Currency representation as an integer

The Fintoc API returns every amount of a currency in its smallest possible unit, with no decimals (as an integer).

In the case of the Chilean peso, the smallest possible unit is a peso, so Fintoc represents an amount of `1000 CLP` as the integer `1000`.

In the case of the American dollar, the smallest possible unit is a dollar cent, so Fintoc represents an amount of `10.50 USD` as the integer `1050`.

Below, you can see examples of accounts using CLP and USD respectively. The CLP account has an amount of `150980 CLP` available, and the USD account has an amount of `159.50 USD` available.

```json A CLP account example theme={null}
{
    "id": "acc_nMNejK7BT8oGbvO4",
    "name": "Cuenta Corriente CLP",
    "official_name": "Cuenta Corriente Moneda Peso Chileno",
    "number": "0000000001",
    "holder_id": "111111111",
    "holder_name": "Lannister SpA",
    "type": "checking_account",
    "currency": "CLP",
    "balance": {
        "available": 150980,
        "current": 150980,
        "limit": 150980
    }
}
```

```json A USD account example theme={null}
{
    "id": "acc_8s7Hk2Lp9QwErTy3",
    "name": "Cuenta Corriente USD",
    "official_name": "Cuenta Corriente Moneda Dolar",
    "number": "0000000002",
    "holder_id": "111111111",
    "holder_name": "Lannister SpA",
    "type": "checking_account",
    "currency": "USD",
    "balance": {
        "available": 15950,
        "current": 15950,
        "limit": 15950
    }
}
```

For now, Fintoc only supports accounts with the following currencies: CLP, MXN, USD, and EUR. Below, you can see examples of each currency and its representation:

| Currency | Amount    | Fintoc representation of the amount |
| :------- | :-------- | :---------------------------------- |
| CLP      | 1000 CLP  | 1000                                |
| MXN      | 10.29 MXN | 1029                                |
| USD      | 10.50 USD | 1050                                |
| EUR      | 10.00 EUR | 1000                                |
