API ReferenceToken Price & Info
Live

Token Price & Info

Metadata, supply, authorities, and validation status for any token — parsed from on-chain data and the token’s first successful pool validation.

The token object

FieldTypeDescription
mintstringToken mint address
namestringOn-chain metadata name
symbolstringTicker
decimalsnumberToken decimals
supplystringTotal supply (raw u64, sent as string to avoid overflow)
primary_dexstringPrimary venue (first-validation DEX)
primary_poolstringAuthoritative pool address
is_mintablebooleanMint authority still set
is_freezablebooleanFreeze authority still set
deployerstringCreator wallet
statusstringValidation state (see below)
flagged_reasonsstring[]Why the token was flagged
flagged_timestring | nullWhen flagged (ISO 8601)
rugged_timestring | nullWhen the rug was confirmed (ISO 8601)

status is one of: pending · processing · validated · suspicious · rugged.

⚠️

Validation status is severity-monotonic — once a token is rugged it stays rugged, and a late validated can never downgrade a rug. For the full security picture (suspicious reasons, malicious-pool links, live security events) see Token Security & Validation.

REST — token info

L1   GET /v1/token/{mint}/info

curl -H "Authorization: Bearer $API_KEY" \
  "https://api.conyr.ai/v1/token/EPjFWd.../info"
{
  "mint": "EPjFWd...",
  "name": "USD Coin",
  "symbol": "USDC",
  "decimals": 6,
  "supply": "5183920114000000",
  "primary_dex": "Raydium",
  "primary_pool": "8sLbNZ...",
  "is_mintable": true,
  "is_freezable": true,
  "deployer": "2wmVCS...",
  "status": "validated",
  "flagged_reasons": []
}

Price

Live   GET /v1/token/{mint}/price

Latest USD price, taken from the most recent 1-second candle close.

FieldTypeDescription
token_mintstringThe token
price_usdnumberLatest price, USD
as_of_ts_msnumberTimestamp of the source candle, unix ms
sourcestringHow the price was derived (ohlcv_1s_close)

For zero-latency price between candles, read the p field on the live Chart Ticks stream.