获取市场状态
HTTP 请求
GET /futures/market
请求参数
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
market | false | string | 市场名列表,多个市场名之间使用英文","分隔,限制最多10个市场,空字符串或不传表示查询全部市场 |
请求响应
参数名 | 类型 | 说明 |
---|---|---|
market | string | 市场名 |
contract_type | string | 合约类型 |
maker_fee_rate | string | maker 手续费费率 |
taker_fee_rate | string | taker 手续费费率 |
min_amount | string | 最小交易量 |
base_ccy | string | 交易币种 |
quote_ccy | string | 报价币种 |
base_ccy_precision | int | 交易币种精度 |
quote_ccy_precision | int | 报价币种精度 |
tick_size | string | 报价精度 |
leverage | []int | 杠杆倍数 |
open_interest_volume | string | 合约持仓数量 |
is_market_available | bool | 市场是否开放 |
is_copy_trading_available | bool | 是否开启跟单功能 |
请求示例
GET /futures/market?market=BTCUSDT
响应示例
{
"code": 0,
"data": [
{
"market": "BTCUSDT",
"contract_type": "linear",
"taker_fee_rate": "0.002",
"maker_fee_rate": "0.002",
"min_amount": "0.0005",
"base_ccy": "BTC",
"quote_ccy": "USDT",
"base_ccy_precision": 8,
"quote_ccy_precision": 2,
"tick_size": "0.5",
"is_market_available": true,
"is_copy_trading_available": true,
"leverage": ["3", "5", "8", "10", "15", "20", "30", "50", "100"],
"open_interest_volume": "100"
}
],
"message": "OK"
}