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
| Field | Type | Description |
|---|---|---|
mint | string | Token mint address |
name | string | On-chain metadata name |
symbol | string | Ticker |
decimals | number | Token decimals |
supply | string | Total supply (raw u64, sent as string to avoid overflow) |
primary_dex | string | Primary venue (first-validation DEX) |
primary_pool | string | Authoritative pool address |
is_mintable | boolean | Mint authority still set |
is_freezable | boolean | Freeze authority still set |
deployer | string | Creator wallet |
status | string | Validation state (see below) |
flagged_reasons | string[] | Why the token was flagged |
flagged_time | string | null | When flagged (ISO 8601) |
rugged_time | string | null | When 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.
| Field | Type | Description |
|---|---|---|
token_mint | string | The token |
price_usd | number | Latest price, USD |
as_of_ts_ms | number | Timestamp of the source candle, unix ms |
source | string | How the price was derived (ohlcv_1s_close) |
For zero-latency price between candles, read the p field on the live Chart Ticks stream.