Skip to main content
GET
/
tokens
/
{mint}
/
ath
Token all-time-high price
curl --request GET \
  --url https://api.dexploit.dev/tokens/{mint}/ath \
  --header 'X-API-Key: <api-key>'
{
  "mint": "<string>",
  "ath_price_sol": 123,
  "ath_price_usd": 123,
  "ath_ts_ms": 123,
  "ath_pair_address": "<string>",
  "computed_at": 123
}

Authorizations

X-API-Key
string
header
required

Preferred for swaps-api endpoints (/swaps/*, /stats/*, /trending, /pool-events).

Path Parameters

mint
string
required

Response

ATH

Per-mint all-time high. All ATH fields are nullable — they're null when the mint has no daily candles in ohlcv_1d yet.

mint
string
ath_price_sol
number | null

ATH close (SOL per token, decimals-adjusted).

ath_price_usd
number | null

ath_price_sol × current Pyth SOL/USD. Today-equivalent USD value, not the USD price at the moment of the ATH.

ath_ts_ms
integer<int64> | null

Unix epoch milliseconds when the ATH occurred.

ath_pair_address
string | null

Pair where the ATH candle was observed.

computed_at
integer<int64>

Unix epoch milliseconds.