Trading Pair Detail
Get configuration information for a specified trading pair.
API Information
- Method:
GET - Path:
/api/v1/symbols/{symbol}
Request Parameters
| Parameter | Location | Type | Required | Description |
|---|---|---|---|---|
| symbol | path | string | Yes | Trading pair, e.g. BTC_USDT |
Request Example
GET /api/v1/symbols/BTC_USDT
Response Fields
Fields are the same as in "Trading Pair List".
| Field | Type | Description |
|---|---|---|
| code | integer | Status code |
| message | string | Response message |
| data.id | integer | Primary key ID |
| data.symbol | string | Trading pair |
| data.base_asset | string | Base asset |
| data.quote_asset | string | Quote asset |
| data.status | integer | Status |
| data.allow_market | boolean | Whether market orders are allowed |
| data.price_precision | integer | Price decimal precision |
| data.qty_precision | integer | Quantity decimal precision |
| data.tick_size | string | Minimum price increment |
| data.step_size | string | Minimum quantity increment |
| data.min_qty / max_qty / min_quote | string | Order limits |
| data.maker_fee_rate / taker_fee_rate | string | Fee rates |
| data.is_default / is_hot / is_gainer / is_new | boolean | Board flags |
Response Example
{
"code": 0,
"message": "success",
"data": {
"id": 1,
"symbol": "BTC_USDT",
"base_asset": "BTC",
"quote_asset": "USDT",
"status": 1,
"allow_market": true,
"price_precision": 2,
"qty_precision": 6,
"quote_precision": 2,
"tick_size": "0.01",
"step_size": "0.000001",
"min_qty": "0.000001",
"max_qty": "1000",
"min_quote": "1",
"maker_fee_rate": "0.001",
"taker_fee_rate": "0.001",
"logo": "https://example.com/btc.png",
"sort_order": 0,
"is_default": false,
"is_hot": false,
"is_gainer": false,
"is_new": false,
"created_at": 1704067200000,
"updated_at": 1704067200000
}
}