v2

latestOpenAPI 3.0.32026-07-21152427.4 KB
Jettons

Get jetton OHLCV candlestick data

Returns up to limit most recent non-empty OHLC candles of the requested interval grain. Window is automatically widened: provider over-fetches, filters empty candles (zero volume and flat OHLC), retries once if not enough candles collected. Returns fewer than limit only if data is genuinely scarce.

get/api/v3/jettons/{address}/ohlcv-chart

Path parameters

addressstring required

The jetton master address

Query parameters

interval'1m' | '5m' | '15m' | '30m' | '1h' | '4h' | '6h' | '12h' | '1d' | '24h' | '1w' | '7d' required

Candle grain (size of one candle)

limitinteger

Desired number of non-empty candles (default 70, max 1000)

beforestring date-time

Upper bound timestamp (exclusive), default now

currency'usd' | 'ton'

Currency for OHLC values

Response

OHLCV data

Example response

{
  "candles": [
    {
      "time": "2024-01-15T10:00:00Z",
      "open": 1.234,
      "high": 1.245,
      "low": 1.221,
      "close": 1.24,
      "volume": 12345.67
    }
  ]
}