Endpoint
Query parameters
This endpoint does not accept any query parameters. It returns data for all trading pairs.Response
Returns an array of ticker objects, one for each trading pair, sorted alphabetically by symbol.Trading pair symbol (uses camelCase format in response)
First trade price in the 24-hour window (uses camelCase format in response)
Most recent trade price (uses camelCase format in response)
Highest trade price in the 24-hour window
Lowest trade price in the 24-hour window
Absolute price change over the 24-hour window (lastPrice - firstPrice) (uses camelCase format in response)
Percentage price change over the 24-hour window (uses camelCase format in response)
Total volume traded in the 24-hour window (in base asset)
Total volume traded in the 24-hour window (in quote asset, i.e., price × quantity) (uses camelCase format in response)
Total number of trades executed in the 24-hour window
Example request
Example response
Notes
- The 24-hour window is calculated as a rolling window from the current time
- Only trading pairs with at least one trade in the last 24 hours are included
- All numeric values are returned as strings to preserve decimal precision
- Response field names use camelCase format (e.g.,
firstPrice,priceChange) as specified by the#[serde(rename_all = "camelCase")]attribute in the backend - Statistics are aggregated using PostgreSQL window functions for optimal performance