Exchanges List
curl --request GET \
--url https://pro-api.coingecko.com/api/v3/exchanges/list \
--header 'x-cg-pro-api-key: <api-key>'[
{
"id": "binance",
"name": "Binance"
},
{
"id": "bitget",
"name": "Bitget"
},
{
"id": "okex",
"name": "OKX"
}
]Exchanges
Exchanges List
To query all the supported exchanges with ID and name
GET
/
exchanges
/
list
Exchanges List
curl --request GET \
--url https://pro-api.coingecko.com/api/v3/exchanges/list \
--header 'x-cg-pro-api-key: <api-key>'[
{
"id": "binance",
"name": "Binance"
},
{
"id": "bitget",
"name": "Bitget"
},
{
"id": "okex",
"name": "OKX"
}
]Notes
- Use this endpoint to get exchange IDs (including derivatives exchanges) for other endpoints that require an
idparameter. - No pagination required — the full list is returned in a single response.
SDK Examples
const response = await client.exchanges.getList();
console.log(JSON.stringify(response, null, 2));
Authorizations
headerAuthqueryAuth
Learn how to set up your API key
Query Parameters
Filter by status of exchanges.
Default: active
Available options:
active, inactive Was this page helpful?
⌘I

