User Balances

Contains endpoints to view user balances by symbol and total estimated balance in USD

Gets user balances by symbol

GET https://api.aquanow.io/users/v1/userbalance

To view example requests for this endpoint, visit Aquanow's Postman documentation.

Query Parameters

Headers

Returns a UserBalancesObject.

{
  "availableBalance": 2.4643104026041307,
  "symbol": "BTC",
  "updatedAt": 1656460243147,
  "pendingTransfer": 0.3214,
  "totalBalance": 2.785710402604131,
  "depositAddress": "rPEPPER7kfTD9w2To4CQk6UCfuHM9c6GDY",
  "pending": 0.3214000000000003,
  "available": 2.4643104026041307
}

Total aggregate of all balances in USD

GET https://api.aquanow.io/users/v1/totalUB

To view example requests for this endpoint, visit Aquanow's Postman documentation.

Headers

Returns an EstimateBalanceUSDObject.

{
    "usdTotal": 8429340.78990256
}

Last updated