Skip to main content
GET

Overview

Returns Open, High, Low, Close, and Volume (OHLCV) candlestick data for any token. Essential for building trading charts and performing technical analysis.

Path Parameters

string
required
Token contract address (hex format)

Query Parameters

string
required
Start date (ISO 8601 format)
string
required
End date (ISO 8601 format)
string
default:"1H"
Candle timeframe: 1, 5, 15, 1H, 4H, 1D, 1W
string
Quote currency token address (defaults to USD)

Response

Returns an array of candlestick objects (CandleDataPoint).
string
required
ISO 8601 timestamp for candle open
number
required
Opening price
number
required
Highest price during period
number
required
Lowest price during period
number
required
Closing price
number
required
Total volume traded

Resolution Values