get https://open-api-v4.coinglass.com/api/futures/supported-exchange-pairs
This endpoint allows you to query all supported futures trading exchanges and their corresponding trading pairs on CoinGlass.
Cache / Update Frequency: every 1 minutes for all the API plans.
This endpoint is available on the following API plans:
Plans | Hobbyist | Startup | Standard | Professional | Enterprise |
---|---|---|---|---|---|
Available | ✅ | ✅ | ✅ | ✅ | ✅ |
Response Data
{
"code": "0",
"msg": "success",
"data": {
"Binance": [ // exchange name
{
"instrument_id": "BTCUSD_PERP",// futures pair
"base_asset": "BTC",// base asset
"quote_asset": "USD"// quote asset
},
{
"instrument_id": "BTCUSD_250627",
"base_asset": "BTC",
"quote_asset": "USD"
},
....
],
"Bitget": [
{
"instrument_id": "BTCUSDT_UMCBL",
"base_asset": "BTC",
"quote_asset": "USDT"
},
{
"instrument_id": "ETHUSDT_UMCBL",
"base_asset": "ETH",
"quote_asset": "USDT"
},
...
]
...
}
}