-
Notifications
You must be signed in to change notification settings - Fork 30
Account API
Covers all account related methods.
The numbers provided in the response for price and volume have been converted to an integer format. The conversion is 100000000, or 1E8.
This method returns list of account balances per currency.
path: /account/balance
accepts http GET only
sample response
[{"balance":1000000000,"pendingFunds":0,"currency":"AUD"},{"balance":1000000000,"pendingFunds":0,"currency":"BTC"},{"balance":1000000000,"pendingFunds":0,"currency":"LTC"}]
Note: When building string to sign for authentication, do not add post data.
This method returns the current trading fee for the user account for the given trading pair.
We are laying the ground work for Maker/Taker fees. Currently they are not activated, hence the null value for makerTradingFeeRate
and takerTradingFreeRate
. Once Maker/Taker are put into production you will see corresponding values.
path: /account/{instrument}/{currency}/tradingfee
accepts http GET only sample response
{"success":true,"errorCode":null,"errorMessage":null,"tradingFeeRate":849999,"volume30Day":6778993802,"makerTradingFeeRate":null,"takerTradingFreeRate":null}
Introduction updated 9/28/18
WebSocket v1 deprecated
Market Data API updated 7/24/19
Trading API updated 08/19/19
Account API updated 3/14/19
Fund Transfer API updated 08/06/19