json

Change Log

Version 1.1.2 (10th April 2024)

Version 1.1.1 (08th April 2024)

Version 1.1.0 (16th November 2022)

Version 1.0.4 (25th, August 2022)

Version 1.0.3 (13th, May 2022)

Version 1.0.2 (16th March 2022)

Version 1.0.1 (25th January 2022)

Version 1.0.0 (13th January 2022)

Overview

Generating API Key

You will need to create an API key on the BTSE platform before you can use authenticated APIs. To create API keys, you can follow the steps below:

Endpoints

Authentication

Example 1: Get Wallet

HMAC SHA384 Signature

$ echo -n "/api/v3.2/user/wallet1624984297330" | openssl dgst -sha384 -hmac "848db84ac252b6726e5f6e7a711d9c96d9fd77d020151b45839a5b59c37203bx"
(stdin)= 14b986706a4368221e0af14a6725377161805e7a57d568220478cb3590ce532d4fad4ac68e6c02a14afced6a0619bfd3

Rate Limits

Rate limits for BTSE is as follows:

Wallet operation

API Status Codes

Each API will return one of the following HTTP status:

Public Endpoints

Query available crypto network list for currency

Response

[
  "Bitcoin",
  "Liquid"
]

GET /api/v3.2/availableCurrencyNetworks

Get available crypto network list for currency.

Request Parameters

Name Type Required Description
currency string Yes Ex: BTC

Response Content

Name Type Required Description
$network string Yes Name of network

Query exchange rate between assets

Response

{
  "code": 1,
  "msg": "Success",
  "time": 1643085970137,
  "data": 36051.55950285,
  "success": true
}

GET /api/v3.2/exchangeRate

Get the exchange rate between assets.

Request Parameters

Name Type Required Description
srcCurrency string Yes Ex: BTC
targetCurrency string Yes Ex: USD

Response Content

Name Type Required Description
code integer Yes Return code
msg string Yes Return message
time long Yes Unix timestamp
data float Yes Exchange rate between assets
success boolean Yes True or False

Wallet Endpoints

Query Wallet Balance

Response

[
  {
    "available": 520.52,
    "currency": "USD",
    "total": 5566.5566
  }
]

GET /api/v3.2/user/wallet

Query user's wallet balance. Requires Read permissions on the API key.

Response Content

Name Type Required Description
currency string Yes Currency
total double Yes Total balance
available double Yes Available balance

Query Wallet History

Response

[
  {
    "amount": 21.35823825,
    "currency": "USD",
    "description": "string",
    "fees": 0.06,
    "orderId": 20181213000239,
    "status": "COMPLETED",
    "timestamp": 1571630174639,
    "type": "Transfer_In",
    "username": "btseUser",
    "wallet": "Wallet",
    "txid": "<Blockchain Transaction ID>",
    "currencyNetwork": "<Blockchain currency network>"
  }
]

GET /api/v3.2/user/wallet_history

Get user's wallet history records on the spot wallet

Request Parameters

Name Type Required Description
currency string No Currency, if not specified will return all currencies
startTime long No Starting time in milliseconds (eg. 1624987283000)
endTime long No Ending time in milliseconds (eg. 1624987283000)
count integer No Number of records to return
useNewSymbolNaming boolean No True to return futures market name in the new format, default to False

Response Content

Name Type Required Description
currency string Yes Currency
amount double Yes Amount in the record
fees double Yes Fees charged if any
orderId string Yes Internal wallet order ID
wallet string Yes Wallet type. For spot will return @SPOT
description string Yes Description of the transaction
status string Yes The status of the record is as follows
PROCESSING
CANCELLED
COMPLETED
EXPIRED
FAILURE
PENDING
type string Yes The type of the record is as follows
Deposit
Withdraw
Convert fiat
Transfer_Out
Transfer_In
ReferralEarning
Trading Fee Stake Freeze
Trading Fee Stake Unfreeze
Sub Account Transfer In
Sub Account Transfer Out
express buy
Strategy Income
Strategy Pay
token voucher in
spot trading fee rebate
futures trading fee rebat
trial fund
general trading fee rebate
token voucher out

Create Wallet Address

Request

{
  "currency": "BTC-LIQUID"
}

Response

[
  {
    "address": "Blockchain address",
    "created": 1592627542
  }
]

POST /api/v3.2/user/wallet/address

Creates a wallet address. If the address created has not been used before, a 400 error will return with the existing unused address. To use this API, Wallet permission is required.

Request Parameters

Name Type Required Description
currency string Yes Ex: BTC
network string Yes Ex: BITCOIN

Response Content

Name Type Required Description
address string Yes Blockchain address
created long Yes Created timestamp

Delete Wallet Address

Request

{
  "currency": "BTC",
  "network": "LIQUID",
  "address": "Blockchain address"
}

DELETE /api/v3.2/user/wallet/address

Delete wallet address. If the address has been delete, a 400 error will return. To use this API, Wallet permission is required.

Request Parameters

Name Type Required Description
currency string Yes Ex: BTC
network string Yes Ex: BITCOIN
address string Yes Ex: Blockchain address

Get Wallet Address

Request

{
  "currency": "BTC",
  "network": "LIQUID"
}

Response

[
  {
    "address": "Blockchain address",
    "created": 1592627542
  }
]

GET /api/v3.2/user/wallet/address

Gets a wallet address. To use this API, Wallet permission is required.

Request Parameters

Name Type Required Description
currency string Yes Ex: BTC
network string Yes Ex: BITCOIN

Response Content

Name Type Required Description
address string Yes Blockchain address
created long Yes Created timestamp

Withdraw Funds

Request

{
  "currency": "BTC-Bitcoin",
  "address": "BTCAddress",
  "tag": "Tag",
  "amount": "0.001"
}

Response

{
  "withdraw_id": "<withdrawal ID>"
}

POST /api/v3.2/user/wallet/withdraw

Performs a wallet withdrawal. To use this API, Withdraw permission is required.

Request Parameters

Name Type Required Description
currency string Yes Currency-Network pair
Currency list can be retrieved from Available currency list for action
Network list can be retrieved from Available network list for currency
address string Yes Blockchain address
tag string Yes Tag, used only by some blockchain (eg. XRP)
amount string Yes Amount to withdraw (Max decimal supported is 8 for all currencies). Will return Invalid withdraw amount (code: 3506) if exceeds
includeWithdrawFee boolean No If true or the field doesn't exist, the fee is included in amount. Otherwise, the fee is extra added and the deducted amount can be larger than the amount claimed

Response Content

Name Type Required Description
withdraw_id string Yes Internal withdrawal ID. References the orderID field in wallet_history API. As withdrawal will not be processed immediately. User can query the wallet history API to check on the status of the withdrawal

Query available currency list for wallet action

Response

[
  "USD",
  "JPY",
  "GBP",
  "HKD",
  "SGD"
]

GET /api/v3.2/availableCurrencies

Get available currency list for wallet action.

Request Parameters

Name Type Required Description
action enum Yes CONVERT, WITHDRAW, SEND (transfer)

Response Content

Name Type Required Description
$currencyName string Yes Name of currency

Convert funds

Request

{
  "amount": "1",
  "fromAsset": "BTC",
  "toAsset": "USD"
}

Response

{
    "amount": 1.0,
    "settlementAmount": 66680.43282,
    "amountCurrency": "BTC",
    "settlementCurrency": "USD",
    "rate": 66680.43282
}

POST /api/v3.2/user/wallet/convert

Performs a currency conversion from wallet. To use this API, Wallet permission is required. To get supported currency list please check Available currency list for action

Request Parameters

Name Type Required Description
amount string Yes amount of currency to convert
fromAsset string Yes source currency to be converted
toAsset string Yes destination currency

Response Content

Name Type Required Description
amount float Yes amount of source currency to be converted
settlementAmount float Yes amount of converted destination currency
amountCurrency string Yes source currency
settlementCurrency string Yes destination currency
rate float Yes exchange rate

Transfer Funds

Request

{
  "amount": "1.0",
  "asset": "BTC",
  "toUser": "jamesbond",
  "toUserMail": "james.bond@google.com"
}

Response

{
  "amount": "1",
  "asset": "BTC",
  "toUser": "jamesbond",
  "toUserMail": "james.bond@google.com"
}

POST /api/v3.2/user/wallet/transfer

Performs a internal currency transfer to other user from wallet. To use this API, Transfer permission is required. To get supported currency list please check Available currency list for action

Request Parameters

Name Type Required Description
amount string Yes amount of currency to transfer
asset string Yes currency to be transferred
toUser string Yes receiver account
toUserMail string Yes receiver email
useNewSymbolNaming boolean No True if use new futures market name in asset field, default to False

Response Content

Name Type Required Description
amount string Yes amount of currency to transfer
asset string Yes currency to be transferred
toUser string Yes receiver account
toUserMail string Yes receiver email

Subaccount transfer history

Response

{
  "code": 1,
  "msg": "Success",
  "time": 1653964265608,
  "success": true,
  "data": {
    "totalRows": 2,
    "pageSize": 10,
    "currentPage": 1,
    "totalPages": 1,
    "data": [
      {
        "timestamp": 1711707874850,
        "fromUser": "uuooxxsub00002",
        "receiver": "uuooxx",
        "currency": "USDT",
        "amount": 11
      }
    ]
  }
}

POST /api/v3.2/subaccount/wallet/history

Query transfer history for subaccounts

Request Parameters

Name Type Required Description
startTime long No Starting time in milliseconds (eg. 1624987283000)
endTime long No Ending time in milliseconds (eg. 1624987283000)
page string Yes Page number to query, default to 1 (1-based)
pageSize string Yes Number of records in a page, default to 10, maximum 50

Response Content

Name Type Required Description
totalRows integer Yes Total records
pageSize integer Yes Number of records in a page
currentPage integer Yes current page number
timestamp integer Yes Unix timestamp
fromUser string Yes sender account
receiver string Yes receiver account
currency string Yes currency of transferred
amount integer Yes amount of currency