# Balances

## Get Balance

<mark style="color:blue;">`GET`</mark> `https://api.vaultoro.com/v1/private/balances`

This endpoint allows you to get your balances.

#### Query Parameters

| Name | Type    | Description                                     |
| ---- | ------- | ----------------------------------------------- |
| fx   | boolean | Choose to return the FX data with your request. |

#### Headers

| Name   | Type   | Description                              |
| ------ | ------ | ---------------------------------------- |
| VTOKEN | string | Your API token to authenticate requests. |

{% tabs %}
{% tab title="200 Cake successfully retrieved." %}

```
{
    "data": [
        {
            "currencyHandle": "EURCENT",
            "handle": "BTC",
            "quantity": "0.00000000",
            "total": 0,
            "type": "PENDING"
        },
        {
            "currencyHandle": "EURCENT",
            "handle": "BTC",
            "quantity": "10.00000000",
            "total": 8288900,
            "type": "SETTLED"
        },
        {
            "currencyHandle": "EURCENT",
            "handle": "GOLD",
            "quantity": "0.0000",
            "total": 0,
            "type": "PENDING"
        },
        {
            "currencyHandle": "EURCENT",
            "handle": "GOLD",
            "quantity": "100.0000",
            "total": 515055,
            "type": "SETTLED"
        },
        {
            "currencyHandle": "EURCENT",
            "handle": "DASH",
            "quantity": "0.00000000",
            "total": 0,
            "type": "PENDING"
        },
        {
            "currencyHandle": "EURCENT",
            "handle": "DASH",
            "quantity": "0.00000000",
            "total": 0,
            "type": "SETTLED"
        }
    ],
    "fxData": [
        {
            "currency": "EURCENT",
            "handle": "BTC",
            "value": "828890"
        },
        {
            "currency": "EURCENT",
            "handle": "GOLD",
            "value": "5151"
        },
        {
            "currency": "EURCENT",
            "handle": "DASH",
            "value": "6452"
        }
    ]
}
```

{% endtab %}
{% endtabs %}
