📕
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?

Trading Fees

Get Fees

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

This endpoint allows you to fetch the scheduled fees for the all the pairs. It also returns your 30 day volume which you can use to calculate your fees.

Query Parameters

Name
Type
Description

pair

string

Optionally filter the fees by pair.

Headers

Name
Type
Description

VTOKEN

string

Add your API token to authenticate your requests.

{
    "data": [
        {
            "bound": 5000,
            "pair": "GOLDBTC",
            "percentage": "0.50",
            "type": "MAKER"
        },
        {
            "bound": 5000,
            "pair": "GOLDBTC",
            "percentage": "0.50",
            "type": "TAKER"
        },
        {
            "bound": 5000,
            "pair": "GOLDDASH",
            "percentage": "0.50",
            "type": "MAKER"
        },
        {
            "bound": 5000,
            "pair": "GOLDDASH",
            "percentage": "0.50",
            "type": "TAKER"
        },
        {
            "bound": 25000,
            "pair": "GOLDBTC",
            "percentage": "0.45",
            "type": "MAKER"
        },
        {
            "bound": 25000,
            "pair": "GOLDBTC",
            "percentage": "0.48",
            "type": "TAKER"
        },
        {
            "bound": 25000,
            "pair": "GOLDDASH",
            "percentage": "0.45",
            "type": "MAKER"
        },
        {
            "bound": 25000,
            "pair": "GOLDDASH",
            "percentage": "0.48",
            "type": "TAKER"
        },
        {
            "bound": 100000,
            "pair": "GOLDBTC",
            "percentage": "0.40",
            "type": "MAKER"
        },
        {
            "bound": 100000,
            "pair": "GOLDBTC",
            "percentage": "0.45",
            "type": "TAKER"
        },
        {
            "bound": 100000,
            "pair": "GOLDDASH",
            "percentage": "0.40",
            "type": "MAKER"
        },
        {
            "bound": 100000,
            "pair": "GOLDDASH",
            "percentage": "0.45",
            "type": "TAKER"
        },
        {
            "bound": 1000000,
            "pair": "GOLDBTC",
            "percentage": "0.35",
            "type": "MAKER"
        },
        {
            "bound": 1000000,
            "pair": "GOLDBTC",
            "percentage": "0.43",
            "type": "TAKER"
        },
        {
            "bound": 1000000,
            "pair": "GOLDDASH",
            "percentage": "0.35",
            "type": "MAKER"
        },
        {
            "bound": 1000000,
            "pair": "GOLDDASH",
            "percentage": "0.43",
            "type": "TAKER"
        },
        {
            "bound": 5000000,
            "pair": "GOLDBTC",
            "percentage": "0.40",
            "type": "TAKER"
        },
        {
            "bound": 5000000,
            "pair": "GOLDDASH",
            "percentage": "0.00",
            "type": "MAKER"
        },
        {
            "bound": 5000000,
            "pair": "GOLDDASH",
            "percentage": "0.40",
            "type": "TAKER"
        },
        {
            "bound": 5000000,
            "pair": "GOLDBTC",
            "percentage": "0.00",
            "type": "MAKER"
        },
        {
            "bound": 10000000000,
            "pair": "DASHBTC",
            "percentage": "-0.05",
            "type": "MAKER"
        },
        {
            "bound": 10000000000,
            "pair": "GOLDDASH",
            "percentage": "-0.10",
            "type": "MAKER"
        },
        {
            "bound": 10000000000,
            "pair": "GOLDBTC",
            "percentage": "0.38",
            "type": "TAKER"
        },
        {
            "bound": 10000000000,
            "pair": "GOLDDASH",
            "percentage": "0.38",
            "type": "TAKER"
        },
        {
            "bound": 100000000000,
            "pair": "DASHBTC",
            "percentage": "0.10",
            "type": "TAKER"
        },
        {
            "bound": 5000000,
            "pair": "GOLDBTC",
            "percentage": "0.00",
            "type": "MAKER"
        },
        {
            "bound": 10000000000,
            "pair": "GOLDBTC",
            "percentage": "-0.10",
            "type": "MAKER"
        }
    ],
    "volume30": [
        {
            "handle": "EURCENT",
            "value": 206991.35576421986
        }
    ]
}

PreviousTokensNextUser

Last updated 3 years ago

Was this helpful?