Skip to main content
GET
OHLCV - Pair

Legacy OHLCV candles scoped to one pair.

  • Pass a pair address when you want market-specific candles from one liquidity venue rather than token-level aggregation.
  • Use time_from, time_to, and type to define the candle window and resolution.
  • Pair candles are useful when DEX-specific pricing matters, especially for fragmented liquidity or venue analysis.
  • Choose the V3 pair endpoint when you need second-level intervals or count-based retrieval.
  • This endpoint consumes 35 CU per request.
  • Chart a specific pool or pair instead of blended token pricing.
  • Compare price action across different pools for the same asset.
  • Monitor venue-specific dislocations, slippage risk, or routing quality.
  • Build analytics for LPs, market makers, and DEX-specific trading workflows.
  • Set x-chain for the target network.
  • Pass the pair address in address.
  • Define the time window with time_from and time_to.
  • Choose a legacy candle interval in type.
  • Use pair candles when the token trades across many venues and you need one market’s exact behavior.
  • Keep pair identity stable in your app so users know which venue they are looking at.
  • Join pair OHLCV with pair-overview or liquidity data when execution conditions matter as much as price.

Authorizations

X-API-KEY
string
header
required

API key for authentication

Headers

x-chain
enum<string>
default:solana

A chain name listed in supported networks.

Available options:
solana,
ethereum,
bsc,
base,
robinhood,
sui,
mantle,
hyperevm,
arbitrum,
avalanche,
optimism,
polygon,
zksync,
monad,
aptos,
fogo,
megaeth

Query Parameters

address
string
required

The address of a pair contract

type
enum<string>
required

OHLCV time frame.

Available options:
1m,
3m,
5m,
15m,
30m,
1H,
2H,
4H,
6H,
8H,
12H,
1D,
3D,
1W,
1M
time_from
integer
required

Specify the start time using unix timestamps in seconds

Required range: 0 <= x <= 10000000000
time_to
integer
required

Specify the end time using unix timestamps in seconds

Required range: 0 <= x <= 10000000000

Response

JSON object containing list of ohlcv data of a pair

success
boolean
required

Whether the request completed successfully.

data
object
required

OHLCV candle series for the requested trading pair.