# Trading Fees

## Get Fees

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

This endpoint allows you to fetch the scheduled fees for the all the pairs. It also returns your 30 day volume which you can use to calculate your fees.

#### Query Parameters

| Name | Type   | Description                         |
| ---- | ------ | ----------------------------------- |
| pair | string | Optionally filter the fees by pair. |

#### Headers

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

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

```
{
    "data": [
        {
            "bound": 5000,
            "pair": "GOLDBTC",
            "percentage": "0.50",
            "type": "MAKER"
        },
        {
            "bound": 5000,
            "pair": "GOLDBTC",
            "percentage": "0.50",
            "type": "TAKER"
        },
        {
            "bound": 5000,
            "pair": "GOLDDASH",
            "percentage": "0.50",
            "type": "MAKER"
        },
        {
            "bound": 5000,
            "pair": "GOLDDASH",
            "percentage": "0.50",
            "type": "TAKER"
        },
        {
            "bound": 25000,
            "pair": "GOLDBTC",
            "percentage": "0.45",
            "type": "MAKER"
        },
        {
            "bound": 25000,
            "pair": "GOLDBTC",
            "percentage": "0.48",
            "type": "TAKER"
        },
        {
            "bound": 25000,
            "pair": "GOLDDASH",
            "percentage": "0.45",
            "type": "MAKER"
        },
        {
            "bound": 25000,
            "pair": "GOLDDASH",
            "percentage": "0.48",
            "type": "TAKER"
        },
        {
            "bound": 100000,
            "pair": "GOLDBTC",
            "percentage": "0.40",
            "type": "MAKER"
        },
        {
            "bound": 100000,
            "pair": "GOLDBTC",
            "percentage": "0.45",
            "type": "TAKER"
        },
        {
            "bound": 100000,
            "pair": "GOLDDASH",
            "percentage": "0.40",
            "type": "MAKER"
        },
        {
            "bound": 100000,
            "pair": "GOLDDASH",
            "percentage": "0.45",
            "type": "TAKER"
        },
        {
            "bound": 1000000,
            "pair": "GOLDBTC",
            "percentage": "0.35",
            "type": "MAKER"
        },
        {
            "bound": 1000000,
            "pair": "GOLDBTC",
            "percentage": "0.43",
            "type": "TAKER"
        },
        {
            "bound": 1000000,
            "pair": "GOLDDASH",
            "percentage": "0.35",
            "type": "MAKER"
        },
        {
            "bound": 1000000,
            "pair": "GOLDDASH",
            "percentage": "0.43",
            "type": "TAKER"
        },
        {
            "bound": 5000000,
            "pair": "GOLDBTC",
            "percentage": "0.40",
            "type": "TAKER"
        },
        {
            "bound": 5000000,
            "pair": "GOLDDASH",
            "percentage": "0.00",
            "type": "MAKER"
        },
        {
            "bound": 5000000,
            "pair": "GOLDDASH",
            "percentage": "0.40",
            "type": "TAKER"
        },
        {
            "bound": 5000000,
            "pair": "GOLDBTC",
            "percentage": "0.00",
            "type": "MAKER"
        },
        {
            "bound": 10000000000,
            "pair": "DASHBTC",
            "percentage": "-0.05",
            "type": "MAKER"
        },
        {
            "bound": 10000000000,
            "pair": "GOLDDASH",
            "percentage": "-0.10",
            "type": "MAKER"
        },
        {
            "bound": 10000000000,
            "pair": "GOLDBTC",
            "percentage": "0.38",
            "type": "TAKER"
        },
        {
            "bound": 10000000000,
            "pair": "GOLDDASH",
            "percentage": "0.38",
            "type": "TAKER"
        },
        {
            "bound": 100000000000,
            "pair": "DASHBTC",
            "percentage": "0.10",
            "type": "TAKER"
        },
        {
            "bound": 5000000,
            "pair": "GOLDBTC",
            "percentage": "0.00",
            "type": "MAKER"
        },
        {
            "bound": 10000000000,
            "pair": "GOLDBTC",
            "percentage": "-0.10",
            "type": "MAKER"
        }
    ],
    "volume30": [
        {
            "handle": "EURCENT",
            "value": 206991.35576421986
        }
    ]
}

```

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://api-docs.vaultoro.com/fees.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
