Skip to main content
GET
Price stats (Single)

Price stats for one token across selected timeframes.

  • Returns current price, high, low, and price-change percent for each requested timeframe.
  • list_timeframe accepts comma-separated values such as 1m, 5m, 30m, 1h, 2h, 4h, 8h, 24h, 2d, 3d, and 7d.
  • Request up to 3 timeframes per call.
  • ui_amount_mode=scaled applies Solana Token-2022 scaled UI amount when the token supports scaled UI amount extension.

Reading the numbers. price_change_percent compares the current price with the selected timeframe window. high and low are the highest and lowest prices inside that timeframe.

  • This endpoint consumes 5 CU per request.
  • Build compact price-stat cards with current price, high, low, and percentage change.
  • Power alert thresholds across short and medium timeframes without fetching full candles.
  • Rank tokens by price momentum across the exact windows your product cares about.
  • Add high/low context to watchlists, token profile headers, and trading widgets.
  • Provide address as the token address and set x-chain.
  • Pass list_timeframe=1m,1h,24h or another set of up to 3 supported timeframes.
  • Set ui_amount_mode=raw or scaled consistently with your Token-2022 price handling.
  • Use OHLCV endpoints when you need full candle series instead of summary stats.
  • Use price stats for lightweight momentum widgets and alerts.
  • Keep timeframe sets consistent across tokens when ranking or comparing performance.
  • Combine price stats with volume and liquidity data before treating price movement as meaningful.

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

list_timeframe
string

A list of time frames seprated by comma (,). List of supported time frames: 1m, 5m, 30m, 1h, 2h, 4h, 8h, 24h, 2d, 3d, 7d

address
string
required

The address of the token contract.

ui_amount_mode
enum<string>
default:raw

Indicate whether to use the scaled amount for scaled ui amount tokens. Only support solana

Available options:
raw,
scaled,
both

Response

JSON object containing list of price stats of tokens

success
boolean
required

Whether the request completed successfully.

data
object[]
required

Array of price-stat rows for the requested token set and timeframes.