Check Server Time
Rate limit rule: 20 request/2s
HTTP Request Check server time
GET /api/spot/v1/public/time
Response:
{
"code": "00000",
"msg": "success",
"requestTime": 1622097118135,
"data": 1622097118134
}
Coin Basic Information
Rate limit rule: 20 request/2s
HTTP Request get all coins information on the platform
GET /api/spot/v1/public/currencies
Response:
{
"code":"00000",
"msg":"success",
"requestTime":1622097139437,
"data":[
{
"coinId":"1",
"coinName":"BTC",
"transfer":"true",
"chains":[
{
"chain":null,
"needTag":"false",
"withdrawAble":"true",
"rechargeAble":"true",
"withdrawFee":"0.005",
"depositConfirm":"1",
"withdrawConfirm":"1",
"minDepositAmount":"0.001",
"minWithdrawAmount":"0.001",
"browserUrl":"https://blockchair.com/bitcoin/testnet/transaction/"
}
]
},
{
"coinId":"2",
"coinName":"USDT",
"transfer":"true",
"chains":[
{
"chain":"ERC20",
"needTag":"false",
"withdrawAble":"true",
"rechargeAble":"true",
"withdrawFee":"0.01",
"depositConfirm":"12",
"withdrawConfirm":"1",
"minDepositAmount":"0.1",
"minWithdrawAmount":"0.1",
"browserUrl":"https://ropsten.etherscan.io/tx/"
}
]
}
]
}
Response Field
Get All Coin Pairs Information
Rate limit rule: 20 request/1s
HTTP Request get basic configuration information of all trading pairs
GET /api/spot/v1/public/products
Response:
{
"code":"00000",
"msg":"success",
"requestTime":1622097197283,
"data":[
{
"symbol":"BTCUSDT_SPBL",
"symbolName":"BTCUSDT",
"baseCoin":"BTC",
"quoteCoin":"USDT",
"minTradeAmount":"0.0001",
"maxTradeAmount":"10000",
"takerFeeRate":"0.001",
"makerFeeRate":"0.001",
"priceScale":"4",
"quantityScale":"8",
"status":"online"
},
{
"symbol":"EOSUSDT_SPBL",
"symbolName":"EOSUSDT",
"baseCoin":"EOS",
"quoteCoin":"USDT",
"minTradeAmount":"1",
"maxTradeAmount":"1",
"takerFeeRate":"1",
"makerFeeRate":"1",
"priceScale":"1",
"quantityScale":"1",
"status":"online"
}
]
}
Response Field
Get Coin Pairs Information By Symbol
Rate limit rule: 20 request/1s
HTTP Request
GET /api/spot/v1/public/product
Request parameter
Response:
{
"code":"00000",
"msg":"success",
"requestTime":1622097197283,
"data":[
{
"symbol":"BTCUSDT_SPBL",
"symbolName":"BTCUSDT",
"baseCoin":"BTC",
"quoteCoin":"USDT",
"minTradeAmount":"0.0001",
"maxTradeAmount":"10000",
"takerFeeRate":"0.001",
"makerFeeRate":"0.001",
"priceScale":"4",
"quantityScale":"8",
"status":"online"
}
]
}
Response Field