跳到主要内容

交易规则与符号信息

获取支持的市场及速率限制信息。

此 API 可公开调用(无需任何安全标头)。如使用具有 读取 权限的身份验证调用, 返回结果会根据账户配置更加准确。

symbolsymbolstypes 参数互斥,每次请求只能使用其中之一。

选项示例
不带参数/exchangeInfo
symbol/exchangeInfo?symbol=BTC-USDT
symbols/exchangeInfo?symbols=["BTC-USDT","ETH-USDT","BTC-PERP-USDT"]
types/exchangeInfo?types=["FuturesPerpetual","FuturesTimeBased"]

请求参数

名称类型是否必填描述
symbolString单一符号
symbolsString多个符号
typesString多个类型

响应内容

成功响应

example
GEThttps://api.btse.com/public-api/market/v1/exchangeInfo

Response

{
"success": true,
"code": 1,
"msg": "Success",
"time": 1624989977940,
"data": {
"rateLimits": [
{
"type": "RAW_REQUEST",
"interval": "SECOND",
"intervalNum": 2,
"limit": 50
}
],
"symbols": [
{
"symbol": "BTC-USDT",
"type": "Spot",
"category": "CRYPTO",
"tradeCurrency": "BTC",
"baseCurrency": "BTC",
"quoteCurrency": "USDT",
"active": true,
"minOrderPrice": "0.5",
"minPriceIncrement": "0.5",
"pricePrecision": 1,
"minOrderSize": "0.00001",
"maxOrderSize": "2000",
"minSizeIncrement": "0.00001",
"sizePrecision": 5
},
{
"symbol": "BTC-PERP-USDT",
"type": "FuturesPerpetual",
"category": "CRYPTO",
"tradeCurrency": "BTC-PERP",
"baseCurrency": "BTC",
"quoteCurrency": "USDT",
"active": true,
"minOrderPrice": "0.5",
"minPriceIncrement": "0.5",
"pricePrecision": 1,
"minOrderSize": "1",
"maxOrderSize": "500000",
"minSizeIncrement": "1",
"sizePrecision": 0,
"contractSize": "0.001",
"availableSettlement": [
"USD",
"BTC",
"USDT",
"USDC",
"USDP"
]
}
]
}
}