Get Eligible Symbols
Get Eligible Symbols
Descriptionâ
Query all margin trading pairs available to the eligible (whitelist) user.
HTTP Requestâ
- GET /api/v3/account/eligible-symbols
- Rate limit: 10/sec/UID
- Permission: UTA mgt. (read)
Request
curl "https://api.bitget.com/api/v3/account/eligible-symbols" \
-H "ACCESS-KEY:your apiKey" \
-H "ACCESS-SIGN:*" \
-H "ACCESS-PASSPHRASE:*" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:en-US" \
-H "Content-Type: application/json"
Request Parametersâ
| Parameters | Type | Required | Description |
|---|---|---|---|
| symbol | String | No | Symbol name e.g., BTCUSDT |
Response
{
"code": "00000",
"msg": "success",
"requestTime": 1784618341109,
"data": [
{
"symbol": "RPBRUSDT",
"category": "MARGIN",
"baseCoin": "rPBR",
"quoteCoin": "USDT",
"symbolType": "stock",
"buyLimitPriceRatio": "0.1",
"sellLimitPriceRatio": "0.1",
"minOrderQty": "0.0001",
"maxOrderQty": "0",
"pricePrecision": "2",
"quantityPrecision": "4",
"quotePrecision": "6",
"minOrderAmount": "20",
"maxSymbolOrderNum": "",
"maxProductOrderNum": "400",
"status": "online",
"maintainTime": "",
"areaSymbol": "yes",
"maxPositionNum": "200",
"isReality": "yes",
"launchTime": "1781101641926"
}
]
}
Response Parametersâ
| Parameters | Type | Description |
|---|---|---|
| symbol | String | Symbol name |
| category | String | Product type MARGIN Margin trading |
| baseCoin | String | Base coin e.g., BTC in BTCUSDT |
| quoteCoin | String | Quote coin e.g., USDT in BTCUSDT |
| symbolType | String | Symbol type crypto Cryptocurrency metal Precious metals stock Stocks commodity Commodities |
| buyLimitPriceRatio | String | Buy price limit ratio The ratio of the buy limit price to the market price, determining the maximum price at which a buy order will be placed |
| sellLimitPriceRatio | String | Sell price limit ratio The ratio of the sell limit price to the market price, determining the minimum price at which a sell order will be placed |
| minOrderQty | String | Minimum order quantity The smallest allowable quantity for placing an order in terms of the base coin |
| maxOrderQty | String | Maximum order quantity for a single limit order The largest allowable quantity for placing an order in terms of the base coin A value of 0 indicates no limit |
| pricePrecision | String | Price precision The number of decimal places allowed for the price |
| quantityPrecision | String | Quantity precision The number of decimal places allowed for the quantity |
| quotePrecision | String | Market order precision The number of decimal places allowed for the price of the quote coin |
| minOrderAmount | String | Minimum order amount The smallest allowable amount for placing an order in terms of the quote coin |
| maxSymbolOrderNum | String | Maximum order number in terms of the trading pair |
| maxProductOrderNum | String | Maximum order number in terms of the product line |
| status | String | Trading pair status listed Listed (not yet open) online Normal limit_open Restrict opening positions limit_close Restrict closing positions offline Delisted/under maintenance restrictedAPI API restricted |
| maintainTime | String | Maintenance time If not configured, it returns: "" |
| areaSymbol | String | Area symbol yes / no |
| maxPositionNum | String | Maximum position number in terms of the trading pair |
| isReality | String | Reality identifier yes Reality stock token no Non-Reality stock token |
| launchTime | String | Launch time Unix millisecond timestamp indicating when the trading pair was launched |