Skip to content

Account API

Josh Siverson edited this page Mar 13, 2019 · 11 revisions

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}

Introduction updated 9/28/18

Authentication

Pagination

WebSocket v2

WebSocket v1 deprecated

Market Data API updated 7/24/19

Trading API updated 08/19/19

Transaction API

Account API updated 3/14/19

Fund Transfer API updated 08/06/19

FAQ

Clone this wiki locally