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 |
is_amm_available | bool | Whether to enable AMM function |
is_margin_available | bool | Whether to enable margin 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,
"is_amm_available": true,
"is_margin_available": true
}
],
"message": "OK"
}