📕
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

Fees

The fees associated with your trades / orders.

Get Trade Fees

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

This endpoint allows you to get the fees for your trades.

Query Parameters

Name
Type
Description

handle

string

Filter results by a handle, BTC, DASH or GOLD

sortDirection

string

The direction to sort the results, either 1 or -1

sort

string

Sort the results by createdAt or updatedAt

until

string

Unix timestamp to filter the results until

since

string

Unix timestamp to filter results since

limit

number

Limit the number of results.

page

number

Return a specific page.

Headers

Name
Type
Description

VTOKEN

string

Your API token to authenticate requests.

{
    "data": [
        {
            "createdAt": 1595428047,
            "handle": "GOLD",
            "referenceId": "1hik3av6xqkcxgnzqr",
            "status": "VALID",
            "type": "VOLUME30",
            "value": "0.00226276"
        }
    ],
    "pagination": {
        "count": 1
    }
}

PreviousExportNextTrades

Last updated 4 years ago

Was this helpful?