Get Symbols Information
Get trading pair information including trading rules, precision, and fees.
HTTP Request
GET /api/v1/spot/market/symbols
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| symbol | string | No | Trading pair symbol (e.g., BTCUSDT). If omitted, returns all symbols |
Request Example
Single Symbol Request
curl -X GET "https://open-api.bydoxe.com/api/v1/spot/market/symbols?symbol=BTCUSDT"
All Symbols Request
curl -X GET "https://open-api.bydoxe.com/api/v1/spot/market/symbols"
Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | string | Response code |
| msg | string | Response message |
| requestTime | number | Request timestamp in milliseconds |
| data | object/array | Response data (object for single symbol, array for all) |
| > symbol | string | Trading pair symbol (e.g., BTCUSDT) |
| > baseCoin | string | Base currency (e.g., BTC) |
| > quoteCoin | string | Quote currency (e.g., USDT) |
| > minTradeAmount | string | Minimum trade amount in base currency |
| > maxTradeAmount | string | Maximum trade amount in base currency |
| > takerFeeRate | string | Taker fee rate (decimal format) |
| > makerFeeRate | string | Maker fee rate (decimal format) |
| > pricePrecision | string | Price decimal precision |
| > quantityPrecision | string | Quantity decimal precision |
| > quotePrecision | string | Quote currency decimal precision |
| > status | string | Trading status (online, offline, etc.) |
| > minTradeUSDT | string | Minimum trade amount in USDT equivalent |
Response Example
Success Response (Single Symbol)
{
"code": "00000",
"msg": "success",
"requestTime": 1732000000000,
"data": {
"symbol": "BTCUSDT",
"baseCoin": "BTC",
"quoteCoin": "USDT",
"minTradeAmount": "0.0001",
"maxTradeAmount": "100",
"takerFeeRate": "0.001",
"makerFeeRate": "0.001",
"pricePrecision": "2",
"quantityPrecision": "6",
"quotePrecision": "2",
"status": "online",
"minTradeUSDT": "5"
}
}
Success Response (All Symbols)
{
"code": "00000",
"msg": "success",
"requestTime": 1732000000000,
"data": [
{
"symbol": "BTCUSDT",
"baseCoin": "BTC",
"quoteCoin": "USDT",
"minTradeAmount": "0.0001",
"maxTradeAmount": "100",
"takerFeeRate": "0.001",
"makerFeeRate": "0.001",
"pricePrecision": "2",
"quantityPrecision": "6",
"quotePrecision": "2",
"status": "online",
"minTradeUSDT": "5"
},
{
"symbol": "ETHUSDT",
"baseCoin": "ETH",
"quoteCoin": "USDT",
"minTradeAmount": "0.001",
"maxTradeAmount": "1000",
"takerFeeRate": "0.001",
"makerFeeRate": "0.001",
"pricePrecision": "2",
"quantityPrecision": "4",
"quotePrecision": "2",
"status": "online",
"minTradeUSDT": "5"
}
]
}
Error Codes
| Code | Message |
|---|---|
| 40034 | symbol does not exist |
| 50010 | No symbols found |