Skip to main content
The Tokens API gives you search, metadata, verification status, and trading metrics for any Solana token. Use it to find tokens, display information to users, and filter by trust level.

History

Token verification on Solana has evolved through several iterations: from the original Solana Token Registry (deprecated 2022), to Jupiter’s community-maintained token lists (V1 via GitHub, V2 via Catdet List), to the current system powered by trading metrics, social signals, and Organic Score. Today, Jupiter VRFD is the latest evolution, expanding beyond verification into token metadata, community content, and insights.

What You Get

FieldDescription
MetadataName, symbol, icon, decimals, mint address
VerificationVerification level (verified, unverified, banned)
Organic Score0-100 score measuring genuine trading activity
Trading StatsVolume, price change, buy/sell counts across intervals (5m, 1h, 6h, 24h)
Market DataHolder count, market cap, liquidity
ContentCommunity-submitted text posts, tweets, summaries (deprecated)

Verification Levels

Jupiter categorises tokens into trust levels based on trading activity, social presence, and community review:
LevelMeaningWhen to use
VerifiedPassed Jupiter’s verification process. Legitimate project with real activity.Safe to display prominently.
UnverifiedNot yet reviewed or doesn’t meet criteria. May still be legitimate.Display with caution indicators.
BannedFlagged as malicious, scam, or misleading.Do not display or warn users.
Check the isVerified field in the API response. Use audit.isSus as an additional signal for suspicious tokens. audit.isSus is only present when a token has been flagged, so check for the field’s presence rather than its value.

Organic Score

Organic Score (0-100) measures how genuine a token’s trading activity is, filtering out bots, snipers, and copy-trading tools so you can find the signal within the noise. The system identifies non-organic wallets (those trading through known bot and automation channels) and treats the remaining activity as organic. The score combines four organic signals:
  • Organic volume
  • Organic holders
  • Organic traders
  • Organic buyers
A few things to keep in mind when using it:
  • It is relative, not absolute. Scores are normalised against the rest of the ecosystem. The score says a token is more organic than another, not that it has a specific amount of organic activity. High-volume tokens like SOL and USDC sit near 100 because differences flatten out at that scale.
  • Early growth counts most. Going from 10 organic buyers to 100 moves the score far more than going from 10,000 to 10,100.
  • Prefer the raw score over the label. Each token also has an organicScoreLabel of high, medium, or low, but these buckets are wide: two tokens can both be medium and behave very differently. For filtering, use the raw organicScore.
For more detail, see How does Jupiter decide if a token is real?.

Token Tags

Token tags are labels applied to tokens for categorisation and discoverability (e.g. verified, lst, stocks, community). Tags appear in the Jupiter UI and are available via the GET /tag endpoint. To get your tokens tagged:
  1. Host a public CSV endpoint with mint addresses (one per row)
  2. Provide a preferred tag name (short, mobile-friendly)
  3. Set a polling interval
  4. Reach out via Discord to begin ingestion

API Reference

Search

Search by name, symbol, or mint address

Tag

Get tokens by tag (verified, lst, stocks)

Category

Top tokens by organic score, volume, or trending

Recent

Recently created tokens with first pool

Check Eligibility

Check if a token can be verified

Craft Transaction

Get an unsigned 1000 JUP payment transaction

Learn More