Derivatives

Derivatives Exchanges List with Data

This endpoint allows you to query all the derivatives exchanges with related data (ID, name, open interest, ...) on CoinGecko

get/derivatives/exchanges

Query parameters

order'name_asc' | 'name_desc' | 'open_interest_btc_asc' | 'open_interest_btc_desc' | 'trade_volume_24h_btc_asc' | 'trade_volume_24h_btc_desc'

use this to sort the order of responses, default: open_interest_btc_desc

per_pagenumber

total results per page

pagenumber

page through results, default: 1

Response

List all derivative exchanges

namestring

derivatives exchange name

idstring

derivatives exchange ID

open_interest_btcnumber

derivatives exchange open interest in BTC

trade_volume_24h_btcstring

derivatives exchange trade volume in BTC in 24 hours

number_of_perpetual_pairsnumber

number of perpetual pairs in the derivatives exchange

number_of_futures_pairsnumber

number of futures pairs in the derivatives exchange

imagestring

derivatives exchange image url

year_establishednumber nullable

derivatives exchange established year

countrystring nullable

derivatives exchange incorporated country

descriptionstring

derivatives exchange description

urlstring

derivatives exchange website url

Example response

[
  {
    "name": "Binance (Futures)",
    "id": "binance_futures",
    "open_interest_btc": 279958.61,
    "trade_volume_24h_btc": "574366.94",
    "number_of_perpetual_pairs": 330,
    "number_of_futures_pairs": 44,
    "image": "https://assets.coingecko.com/markets/images/466/small/binance_futures.jpg?1706864452",
    "year_established": 2019,
    "country": null,
    "description": "",
    "url": "https://www.binance.com/"
  },
  {
    "name": "Bitget Futures",
    "id": "bitget_futures",
    "open_interest_btc": 123267.93,
    "trade_volume_24h_btc": "228027.47",
    "number_of_perpetual_pairs": 254,
    "number_of_futures_pairs": 0,
    "image": "https://assets.coingecko.com/markets/images/591/small/2023-07-25_21.47.43.jpg?1706864543",
    "year_established": null,
    "country": null,
    "description": "",
    "url": "https://www.bitget.com/en/"
  }
]

Changes