Trades

Fetch your most recent trades

Get Trades

GET https://api.vaultoro.com/v1/private/history/trades

This endpoint allows you to fetch all your trades.

Query Parameters

NameTypeDescription

type

string

Filter by the SELL or BUY trades.

orderId

string

Get all the trades associated with an order.

limit

string

Limit the number of results.

since

number

Unix timestamp to filter results since.

pair

string

Enter the pair to filter by. Currently available: DASHBTC, GOLDBTC or GOLDDASH.

page

number

Filter the results by page.

until

number

Unix timestamp to filter the results until.

Headers

NameTypeDescription

VTOKEN

string

Your API token to authenticate requests.

{
    "data": [
        {
            "createdAt": 1595427428,
            "fees": {
                "typeHandle": "VOLUME30",
                "value": "-0.01900000"
                "handle": "GOLD",
            },
            "matchType": "LIMIT",
            "orderReferenceId": "dczi1trxkcwatf0x",
            "pair": "GOLDBTC",
            "price": "0.00615450",
            "quantity": "1.0000",
            "referenceId": "1pxn6pkkcxgaq9o",
            "type": "BUY",
            "updatedAt": 1595427428
        }
    ],
    "pagination": {
        "count": 1
    }
}

Last updated