Get Market Status
HTTP request
GET /spot/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 | 
| 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 | 
| delisted_at | int | Expected time to be delisted, in milliseconds | 
| is_amm_available | bool | Whether to enable AMM function | 
| is_margin_available | bool | Whether to enable margin trading | 
| is_pre_market_trading_available | bool | Whether to enable pre-market trading | 
| is_api_trading_available | bool | Whether to enable API trading | 
Request example
GET /spot/market?market=BTCUSDT
Response example
{
    "code": 0,
    "data": [
        {
            "market": "BTCUSDT",
            "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,
            "status": "online",
            "delisted_at": 1819704600000,
            "is_amm_available": true,
            "is_margin_available": true,
            "is_pre_trading_available": true,
            "is_api_trading_available": true,
        }
    ],
    "message": "OK"
}