Derivatives Exchanges List
curl --request GET \
--url https://pro-api.coingecko.com/api/v3/derivatives/exchanges/list \
--header 'x-cg-pro-api-key: <api-key>'[
{
"id": "binance_futures",
"name": "Binance (Futures)"
},
{
"id": "bybit",
"name": "Bybit (Futures)"
}
]Derivatives
Derivatives Exchanges List
To query all the supported derivatives exchanges with ID and name on CoinGecko
GET
/
derivatives
/
exchanges
/
list
Derivatives Exchanges List
curl --request GET \
--url https://pro-api.coingecko.com/api/v3/derivatives/exchanges/list \
--header 'x-cg-pro-api-key: <api-key>'[
{
"id": "binance_futures",
"name": "Binance (Futures)"
},
{
"id": "bybit",
"name": "Bybit (Futures)"
}
]Use this endpoint to get derivatives exchange IDs for other endpoints that require an
id parameter.SDK Examples
const response = await client.derivatives.exchanges.getList();
console.log(JSON.stringify(response, null, 2));
Authorizations
headerAuthqueryAuth
Learn how to set up your API key
Was this page helpful?
⌘I

