Skip to main content
OHLCV data is interval-aligned and deterministic. Candle boundaries are fixed to UTC intervals, which keeps joins and cross-venue aggregation consistent.

Bar payload

  • data.open, data.high, data.low, data.close: interval prices
  • data.volume: traded base volume for the bar
  • data.interval: duration token such as 1m, 5m, or 1h
Example:
{
  "timestamp": 1767225660000000,
  "venue": "hyperliquid",
  "symbol": "BTC-USD",
  "type": "bar",
  "data": {
    "interval": "1m",
    "open": 64290.2,
    "high": 64310.5,
    "low": 64271.1,
    "close": 64302.0,
    "volume": 38.47
  }
}
For endpoint parameters such as interval and format=tradingview, see the OHLCV API.

Next steps

  • Read OHLCV API for request parameters and limits.
  • Read Trades if you need execution-level records instead of interval aggregations.
  • Read Snapshots if you want bulk historical standardized files.