GET
/
derivatives
/
exchanges
Derivatives Exchanges List with Data
curl --request GET \
  --url https://api.coingecko.com/api/v3/derivatives/exchanges \
  --header 'x-cg-demo-api-key: <api-key>'
[
  {
    "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/"
  }
]

Tips

  • You may include values such as per_page and page to specify how many results you would like to show in the responses per page and which page of responses you would like to show.

Note

  • Cache / Update Frequency: every 60 seconds for all the API plans.

Authorizations

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

Query Parameters

order
enum<string>

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

Available options:
name_asc,
name_desc,
open_interest_btc_asc,
open_interest_btc_desc,
trade_volume_24h_btc_asc,
trade_volume_24h_btc_desc
per_page
integer

total results per page

page
integer

page through results, default: 1

Response

200 - application/json

List all derivative exchanges

The response is of type object.