# Transactions

## Get Transactions

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

This endpoint lets you fetch your transaction history.

#### Query Parameters

| Name  | Type    | Description                                                 |
| ----- | ------- | ----------------------------------------------------------- |
| since | string  | Unix timestamp to filter the results since                  |
| until | string  | Unix timestamp to filter the results until                  |
| limit | string  | Limit the number of results.                                |
| page  | string  | The page number.                                            |
| asset | string  | The asset you wish to filter by. Must be BTC, GOLD or DASH. |
| type  | boolean | The type of transaction. Should be SEND or RECEIVE.         |

#### Headers

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

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

```
{
    "data": [
        {
            "asset": "GOLD",
            "createdAt": 1594911528,
            "referenceId": "g2p1x1aajkcox578x",
            "status": "VALID",
            "subject": "xxx",
            "transactionReference": "xxx",
            "type": "SEND",
            "value": "-50.00000000"
        },
        {
            "asset": "GOLD",
            "createdAt": 1594911463,
            "referenceId": "g2p1x1a8vkcox3tek",
            "status": "VALID",
            "subject": "xxx",
            "transactionReference": "xxx",
            "type": "SEND",
            "value": "-50.00000000"
        },
        {
            "asset": "GOLD",
            "createdAt": 1594911396,
            "referenceId": "g2p1x1a70kcox2dix",
            "status": "VALID",
            "subject": "xx",
            "transactionReference": "xxx",
            "type": "SEND",
            "value": "-25500.00000000"
        },
        {
            "asset": "GOLD",
            "createdAt": 1594911370,
            "referenceId": "g2p1x1a6nkcox1t8i",
            "status": "VALID",
            "subject": "xxx",
            "transactionReference": "xxx",
            "type": "SEND",
            "value": "-25500.00000000"
        }
    ],
    "pagination": {
        "count": 4
    }
}

```

{% endtab %}
{% endtabs %}
