GET
/api/v1/exchanges/{source}/statsHobbyist tier+ · 30 req/minAggregate OI/volume/funding/heartbeat summary for one exchange.
Adds a cross-instrument average funding rate and the total distinct instrument count to the identity row. Useful for single-venue health tiles.
Path parameters
Segments of the URL path, validated server-side.
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
| source | string | required | — | Exchange slug. |
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;
displayName: string;
type: string;
oiUsd: number;
volume24hUsd: number;
coinCount: number;
instrumentCount: number;
avgFundingRate: number | null;
lastHeartbeatTs: number | null;
status: string;
}Example
Copy the curl, replace YOUR_KEY with a real key from your dashboard, and run.
Requestbash
curl -sS "http://localhost:3000/api/v1/exchanges/binance_futures/stats" \
-H "Authorization: Bearer cg_live_YOUR_KEY"Responsejson
{
"data": {
"source": "binance_futures",
"displayName": "Binance Futures",
"type": "CEX",
"oiUsd": 12410200000,
"volume24hUsd": 85200000000,
"coinCount": 210,
"instrumentCount": 228,
"avgFundingRate": 0.00011,
"lastHeartbeatTs": 1744835110000,
"status": "live"
}
}Next
Check the error code reference, or get an API key to try the request against your own account.