GET
/
exchanges
/
list
Exchanges List (ID Map)
curl --request GET \
  --url https://api.coingecko.com/api/v3/exchanges/list \
  --header 'x-cg-demo-api-key: <api-key>'
[
  {
    "id": "10kswap-starknet-alpha",
    "name": "10KSwap"
  },
  {
    "id": "1bch",
    "name": "1BCH"
  },
  {
    "id": "3xcalibur",
    "name": "3xcalibur"
  }
]

Tips

  • You may use this endpoint to query the list of exchanges including derivatives exchanges for other endpoints that contain params like id(exchange ID).

Note

  • There is no pagination required for this endpoint.
  • Cache / Update Frequency: every 5 minutes for all the API plans.

Authorizations

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

Query Parameters

status
enum<string>

filter by status of exchanges, default: active

Available options:
active,
inactive

Response

200 - application/json

List all exchanges with ID and name

The response is of type object.