# Referrals

## Get Referrals

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

This endpoint allows you to fetch your referral ID and fee schedule.

#### Headers

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

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

```
{
    "data": {
        "code": "q8VGq2B",
        "createdAt": 1595582580,
        "fees": [
            {
                "percentage": "20.00",
                "type": "REFERRAL_DIRECT"
            },
            {
                "percentage": "5.00",
                "type": "REFERRAL_INDIRECT"
            }
        ],
        "referred": 0
    }
}
```

{% endtab %}
{% endtabs %}
