cURL
curl --request GET \ --url https://api.arbiterapi.com/v1/markets/{market_id}/candles \ --header 'X-API-Key: <api-key>'
{ "market_id": "<string>", "interval": "<string>", "candles": [ { "timestamp_ms": 123, "open": 123, "high": 123, "low": 123, "close": 123, "volume": 123 } ] }
Get OHLCV candlestick data for charting. Supports intervals: 1m, 5m, 15m, 1h, 4h, 1d.
Candle interval: 1m, 5m, 15m, 1h, 4h, 1d
Start time (Unix seconds)
End time (Unix seconds)
Market slug for reliable upstream lookup
Successful Response
Show child attributes