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

NameTypeDescription

symbol

String

BTC

Fetches the user balance for the symbol provided. If symbol is not specified in query parameters, it fetches all user balances.

accountId*

String

Fetches the user balance for the account provided.

Headers

NameTypeDescription

x-api-key*

String

{{x-api-key}}

API Auth Key

x-signature*

String

49c6260c194f4d7ed5cb917dc70b9821673246b2abc1cf28f05df6a75fd24181e00f8e57b321d15ae45db58b3bffe27a

Signature created using your API secret

x-nonce*

Number

1657731573930

Timestamp in millisecond

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.

Query Parameters

NameTypeDescription

accountId*

String

Fetches the user balance for the account provided.

Headers

NameTypeDescription

x-api-key*

String

{{x-api-key}}

API Auth Key

x-signature*

String

49c6260c194f4d7ed5cb917dc70b9821673246b2abc1cf28f05df6a75fd24181e00f8e57b321d15ae45db58b3bffe27a

Signature created using your API secret

x-nonce*

Number

1657731573930

Timestamp in millisecond

Returns an EstimateBalanceUSDObject.

{
    "usdTotal": 8429340.78990256
}

Last updated