Skip to main content
GET
/
derivatives
/
exchanges
/
list
Derivatives Exchanges List
curl --request GET \
  --url https://api.coingecko.com/api/v3/derivatives/exchanges/list \
  --header 'x-cg-demo-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

x-cg-demo-api-key
string
header
required

Response

200 - application/json

List of derivative exchange identifiers and names

id
string
required

Derivatives exchange ID

name
string
required

Derivatives exchange name