Skip to main content
Loading market data…
GET/api/v1/spot/exchanges/{source}Hobbyist tier+ · 30 req/min

Single-venue spot rollup.

Same row shape as `/api/v1/spot/exchanges` but scoped to a single source. Returns 404 when the venue has no spot activity in the last 24h.

Path parameters

Segments of the URL path, validated server-side.

NameTypeRequiredDefaultDescription
sourcestringrequired
Exchange slug (e.g. `binance`).

Query parameters

This endpoint takes no query parameters.

Response shape

Always wrapped in the standard envelope. Nullable fields are explicitly marked — treat missing numeric data as a real data-source gap, not as an error.

data payloadtypescript
// Wrapped in the standard envelope:
// {
//   data: /* shape below */,
//   meta?: { total?: number; limit?: number; offset?: number; ... }
// }

{
  source: string;
  volume24hUsd: number;
  tradeCount: number;
  pairCount: number;
  coinCount: number;
  sharePct: number;
  lastTs: number | null;
}

Example

Copy the curl, replace YOUR_KEY with a real key from your dashboard, and run.

Requestbash
curl -sS "http://localhost:3000/api/v1/spot/exchanges/binance" \
  -H "Authorization: Bearer cg_live_YOUR_KEY"
Responsejson
{
  "data": {
    "source": "binance",
    "volume24hUsd": 8200000000,
    "tradeCount": 420000,
    "pairCount": 210,
    "coinCount": 185,
    "sharePct": 35.1,
    "lastTs": 1744834800000
  }
}

Next

Check the error code reference, or get an API key to try the request against your own account.