Skip to main content
Loading market data…
GET/api/v1/spot/pairsHobbyist tier+ · 30 req/min

Directory of tracked spot pairs with venue coverage + 24h volume.

Every spot instrument we ingest, grouped by canonical symbol, with distinct venue count and 24h notional. Sorted volume-desc.

Query parameters

All query parameters are optional unless marked required.

NameTypeRequiredDefaultDescription
limitnumberoptional200
Rows. Max 2000.
basestringoptional
Optional base filter.

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; ... }
// }

Array<{
  canonicalSymbol: string;
  base: string;
  quote: string;
  venueCount: number;
  volume24hUsd: 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/pairs?base=BTC" \
  -H "Authorization: Bearer cg_live_YOUR_KEY"
Responsejson
{
  "data": [
    { "canonicalSymbol": "BTCUSDT", "base": "BTC", "quote": "USDT", "venueCount": 4, "volume24hUsd": 18200000000, "lastTs": 1744834800000 }
  ],
  "meta": { "total": 1, "limit": 200 }
}

Next

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