📕
Vaultoro API Docs
  • Getting Started
  • Example API Calls
  • Public
    • Reset email
    • OHLC
    • Orders
    • Ticker
    • Trades
    • Trading Fees
    • Audit
  • Private
  • Ledger
  • Assets
  • Balances
  • History
    • Export
    • Fees
    • Trades
    • Transactions
  • Orders
  • OTC
  • Referrals
  • Tokens
  • Trading Fees
  • User
  • Login History
  • Change Email
  • Audit
  • Portfolio
  • Pending Approvals
  • Unverify
  • Update Terms Version
  • Address Book
    • Delete address
    • Update Address
    • List Addresses
    • Enable Address Book Whitelist
    • Disable address book whitelist
Powered by GitBook
On this page

Was this helpful?

  1. History

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

Name
Type
Description

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

Name
Type
Description

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
    }
}
{
    "data": [],
    "pagination": {
        "count": 0
    }
}
PreviousFeesNextTransactions

Last updated 4 years ago

Was this helpful?