Account API
Covers all account related methods.
Number Conversion
The numbers provided in the response for price and volume have been converted to an integer format. The conversion is 100000000, or 1E8.
Get account balance
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.
Get trading fee
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}