API reference
Daily traded volume
GET/baskets/volume/daily
Total traded volume aggregated by UTC day from the platform trade ledger.
120 requests / minute per key (read tier). Returns the {success, message, data} envelope.
Authorizations
Authorizationstringheaderrequired
Bearer token - an ito_* key (from Settings) holding the baskets:read scope.
Query parameters
daysint
Lookback window in calendar days (default 30, max 365)
basketIdstring
Filter to a single basket
Request
curl "https://itomarkets.com/api/v1/baskets/volume/daily" \ -H "Authorization: Bearer $ITO_API_KEY"ResponseJSON
{ "success": true, "message": "Success", "data": { "days": [ { "date": "2026-06-17", "totalVolumeUsd": "350.00", "tradeCount": 3, "buyVolumeUsd": "300.00", "sellVolumeUsd": "50.00" } ], "summary": { "totalVolumeUsd": "350.00", "totalTradeCount": 3, "daysWithActivity": 1 } }}