Skip to content
Alchemy Logo

Candle snapshot

This API is in private preview. Target October 2026; timing is subject to change.

Returns up to 5,000 OHLCV candles for charting a market over a bounded time range.

Coming with HyperCore. This read is documented but is not yet callable.

POST /{apiKey}/info

ParameterTypeRequiredDescription
typestringYesSelects candleSnapshot.
reqobjectYesNested candle request.
req.coinstringYesMarket identifier; HIP-3 markets use a DEX-prefixed name.
req.intervalstringYesOne of 1m, 3m, 5m, 15m, 30m, 1h, 2h, 4h, 8h, 12h, 1d, 3d, 1w, or 1M.
req.startTimeintegerYesInclusive start time in milliseconds.
req.endTimeintegerYesInclusive end time in milliseconds.
{
  "type": "candleSnapshot",
  "req": {
    "coin": "BTC",
    "interval": "15m",
    "startTime": 1735689600000,
    "endTime": 1735776000000
  }
}

FieldTypeDescription
[]arrayCandles ordered by the requested time range.
[].TintegerCandle close time in milliseconds.
[].cstringClosing price as a decimal string.
[].hstringHighest traded price during the interval.
[].istringCandle interval, such as 15m or 1h.
[].lstringLowest traded price during the interval.
[].nintegerNumber of trades included in the candle.
[].ostringOpening price as a decimal string.
[].sstringMarket symbol; HIP-3 markets include the DEX prefix.
[].tintegerCandle open time in milliseconds.
[].vstringTraded volume during the interval, as a decimal string.

[
  {
    "T": 1681924499999,
    "c": "29258.0",
    "h": "29309.0",
    "i": "15m",
    "l": "29250.0",
    "n": 189,
    "o": "29295.0",
    "s": "BTC",
    "t": 1681923600000,
    "v": "0.98639"
  }
]
Was this page helpful?