{id}: Get exchange data

API: coingecko.com:coingecko-api
Endpoint: /exchanges/{id}
Response format: application/json
Auth: unknown
Method: GET
Last Status: 200
Latency: 246ms

Description

Returns comprehensive exchange data including trading volume, trust score, supported trading pairs, social media links, and metadata. Use this to evaluate exchanges and get trading pair information.

From spec: Get exchange volume and top 100 tickers only (store, derivatives, dex, otc, aggregator) by exchange ID.

Usage Tips

- Exchange ID must be a valid CoinGecko identifier (e.g., 'binance', 'coinbase') - Returns trust score and rank based on liquidity and API coverage - Includes trading pairs with volume and price data - Check 'centralized' field to identify CEX vs DEX

Parameters (1)

id (string, path, required)

Exchange id (refers to exchange 'id' field from /exchanges/list)

Examples (1)

Get Binance exchange details and trading pairs probe-gate

Demonstrates fetching detailed information about the Binance exchange

curl 'https://api.coingecko.com/api/v3/exchanges/binance'
import requests

resp = requests.get("https://api.coingecko.com/api/v3/exchanges/binance")
data = resp.json()
import zingu_apis

api = zingu_apis.api("coingecko")
result = api.fetch("exchanges/{id}")

for item in result:
    print(item)
const resp = await fetch("https://api.coingecko.com/api/v3/exchanges/binance");
const data = await resp.json();

Probe History

Latency

Status Codes

TimeStatusLatencySize
2026-04-16 01:38:46.148395 200 246ms
2026-04-15 00:56:26.527093 200 118ms
2026-04-14 00:49:03.090689 200 144ms
2026-04-12 14:11:53.540968 200 232ms
2026-04-10 02:44:14.123029 200 224ms
2026-04-09 02:21:20.524726 200 238ms