Per-exchange 24h volume
GET/api/v1/cex/symbol/volume
Latest 24h trading volume across every (exchange, market, quote) a token lists on. Backed by cache.latest_volume.
Request
Query Parameters
base stringrequired
Base asset (e.g. BTC)
market string
Possible values: [spot, futures]
Filter to spot or futures
Responses
- 200
- 400
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
b string
e string
m string
spot | futures
q string
quote_volume number
USD-ish, dashboard-friendly
ts integer
ms, collector wall-time
volume number
base-denominated (raw)
[
{
"b": "string",
"e": "string",
"m": "string",
"q": "string",
"quote_volume": 0,
"ts": 0,
"volume": 0
}
]
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
error string
error specifies the error message
{
"error": "string"
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
Schema
error string
error specifies the error message
{
"error": "string"
}
Loading...