獲取市場狀態
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"
}