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

Balances

Your balances represent your available funds in all currencies.

Get Balance

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

This endpoint allows you to get your balances.

Query Parameters

Name
Type
Description

fx

boolean

Choose to return the FX data with your request.

Headers

Name
Type
Description

VTOKEN

string

Your API token to authenticate requests.

{
    "data": [
        {
            "currencyHandle": "EURCENT",
            "handle": "BTC",
            "quantity": "0.00000000",
            "total": 0,
            "type": "PENDING"
        },
        {
            "currencyHandle": "EURCENT",
            "handle": "BTC",
            "quantity": "10.00000000",
            "total": 8288900,
            "type": "SETTLED"
        },
        {
            "currencyHandle": "EURCENT",
            "handle": "GOLD",
            "quantity": "0.0000",
            "total": 0,
            "type": "PENDING"
        },
        {
            "currencyHandle": "EURCENT",
            "handle": "GOLD",
            "quantity": "100.0000",
            "total": 515055,
            "type": "SETTLED"
        },
        {
            "currencyHandle": "EURCENT",
            "handle": "DASH",
            "quantity": "0.00000000",
            "total": 0,
            "type": "PENDING"
        },
        {
            "currencyHandle": "EURCENT",
            "handle": "DASH",
            "quantity": "0.00000000",
            "total": 0,
            "type": "SETTLED"
        }
    ],
    "fxData": [
        {
            "currency": "EURCENT",
            "handle": "BTC",
            "value": "828890"
        },
        {
            "currency": "EURCENT",
            "handle": "GOLD",
            "value": "5151"
        },
        {
            "currency": "EURCENT",
            "handle": "DASH",
            "value": "6452"
        }
    ]
}

PreviousAssetsNextHistory

Last updated 3 years ago

Was this helpful?