Skip to main content
Loading market data…
GET/api/v1/futures/volumeStartup tier+ · 80 req/min

Per-coin 24h futures notional (perp + dated futures).

Sums the trade table across every non-spot instrument per coin for the last 24h. Optional `coin`/`source` filters scope the view. Ranked volume-desc.

Query parameters

All query parameters are optional unless marked required.

NameTypeRequiredDefaultDescription
limitnumberoptional100
Rows. Max 500.
coinstringoptional
Base asset filter.
sourcestringoptional
Exchange 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<{
  base: string;
  volume24hUsd: number;
  tradeCount: number;
  venueCount: number;
  instrumentCount: 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/futures/volume?limit=20" \
  -H "Authorization: Bearer cg_live_YOUR_KEY"
Responsejson
{
  "data": [
    {
      "base": "BTC",
      "volume24hUsd": 85200000000,
      "tradeCount": 2100000,
      "venueCount": 5,
      "instrumentCount": 14,
      "lastTs": 1744834800000
    }
  ],
  "meta": { "total": 1, "limit": 20 }
}

Next

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