Get candlestick (OHLC) data
Retrieve candlestick data for a specific market and time range. Supports intervals: 1m, 15m, 1h, 4h, 1d. Missing intervals are interpolated using the last known close price. Maximum 1000 candles per request.
Optionally set filterWicks=true to suppress extreme H/L wicks caused by liquidation
cascades or low-liquidity outlier fills. The filter computes a cross-candle
volume-weighted typical price and standard deviation, then clamps each candle’s
high and low to [VWAP ± nSigma × σ_v] without touching open or close.
Authorizations
Bearer token from Geomi. See Authentication for setup instructions.
Query Parameters
Market address
Candlestick interval (1m, 5m, 15m, 30m, 1h, 2h, 4h, 1d, 1w, 1mo)
1m, 5m, 15m, 30m, 1h, 2h, 4h, 8h, 12h, 1d, 3d, 1w, 1mo Start time in milliseconds
End time in milliseconds
When true, caps extreme H/L wicks using cross-candle volume-weighted standard deviation. For each candle, H and L are clamped to [VWAP ± nSigma × σ_v] while preserving the candle body (open/close). No extra database queries are required.
Number of volume-weighted standard deviations used as the wick-filter band (default: 3.0). Only applies when filterWicks is true.
Response
Candlestick data retrieved successfully

