📕
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. Public

Trades

Fetch a list of the most recent trades

Get Trades

GET https://api.vaultoro.com/v1/public/trades

This endpoint allows you to get the latest trades.

Query Parameters

Name
Type
Description

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
    }
}
PreviousTickerNextTrading Fees

Last updated 3 years ago

Was this helpful?