Get Trading Pairs
Get Trading Pairs
Description
Get copy-trading symbol
HTTP Request
- GET /api/v3/copy/futures/trading-pairs
- Rate limit: 5/sec/UID
- Permission:
- Unified Account — Futures Copy-Trading Orders — Read-only.
Request
curl "https://api.bitget.com/api/v3/copy/futures/trading-pairs" \
-H "ACCESS-KEY:*******" \
-H "ACCESS-SIGN:*" \
-H "ACCESS-PASSPHRASE:*" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:en-US" \
-H "Content-Type: application/json"
Request Parameters
N/A
Response
{
"code": "00000",
"msg": "success",
"requestTime": 1774957070136,
"data": [
{
"symbol": "ADAUSDT",
"leverage": "50",
"marginDetails": [
{
"marginCoin": "USDT",
"maxLongCount": "9600000",
"remainingLongCount": "9600000",
"maxShortCount": "9600000",
"remainingShortCount": "9600000"
}
]
}
]
}
Response Parameters
| Parameter | Type | Comments |
|---|---|---|
| symbol | String | Symbol name |
| leverage | String | Leverage multiplier |
| marginDetails | List<String> | Margin details list |
| > marginCoin | String | Margin currency e.g., USDT |
| > maxLongCount | String | Maximum long position size |
| > remainingLongCount | String | Remaining long position size |
| > maxShortCount | String | Maximum short position size |
| > remainingShortCount | String | Remaining short position size |