Trades
Fetch a list of the most recent trades
Last updated
Fetch a list of the most recent trades
GET https://api.vaultoro.com/v1/public/trades
This endpoint allows you to get the latest trades.
page
number
Filter the results by page
pair
string
Enter the pair to filter by. Currently available: DASHBTC, GOLDBTC or GOLDDASH
until
number
Unix timestamp to filter the results until
since
string
Unix timestamp to filter results since
limit
number
Limit the number of results
{
"data": [
{
"createdAt": 1595427428,
"matchType": "LIMIT",
"pair": "GOLDBTC",
"price": "0.00615450",
"quantity": "1.0000",
"type": "BUY",
"updatedAt": 1595427428
}
],
"pagination": {
"count": 1
}
}
{
"data": [],
"pagination": {
"count": 0
}
}
Last updated