Get Market Status
HTTP request
GET /futures/market
Request parameters
| Parameter Name | Required | Type | Notes |
|---|---|---|---|
| market | false | string | List of market names. Use "," to separate multiple market names, a maximum of 10 markets are allowed. An empty string or pass to query all markets. |
Return parameters
| Parameter Name | Type | Notes |
|---|---|---|
| market | string | Market name |
| contract_type | string | Contract Type |
| maker_fee_rate | string | Maker fee rate |
| taker_fee_rate | string | Taker fee rate |
| min_amount | string | Min. transaction volume |
| base_ccy | string | Base currency |
| quote_ccy | string | Quote currency |
| base_ccy_precision | int | Base currency decimal |
| quote_ccy_precision | int | Quote currency decimal |
| status | string | Market Status |
| tick_size | string | Tick size |
| leverage | []int | Leverage |
| open_interest_volume | string | Futures position size |
| is_market_available | bool | Whether the market is open |
| is_copy_trading_available | bool | Whether to enable copy trading |
| is_api_trading_available | bool | Whether to enable API trading |
Request example
GET /futures/market?market=BTCUSDT
Response example
{
"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,
"is_api_trading_available": true,
"leverage": ["3", "5", "8", "10", "15", "20", "30", "50", "100"],
"open_interest_volume": "100"
}
],
"message": "OK"
}