Skip to content

Venum-Supported Tokens

Venum tracks a curated set of Solana tokens across prices, pools, quotes, swaps, and other builder-facing APIs.

Use this page when you want to know:

  • which token symbols Venum recognizes
  • which mint address each symbol maps to
  • which category a token belongs to

How to Get the Current List

Use:

This endpoint returns:

  • symbol
  • name
  • mint
  • decimals
  • category
  • logoURI — token icon, inline (no per-mint call needed)

Searching Beyond the Catalog

The curated list above is what Venum tracks first-class, but you are not limited to it. GET /v1/tokens/search?q= does free-text search by symbol, name and description across every token Venum has pool coverage for — ranked by match relevance and then vault-verified liquidity (real on-chain capital, not pool-claimed state), so the real token leads its impersonators — and returns logoURI, logoProxyURI, priceUsd, liquidityUsd, and description inline. To resolve a specific long-tail token immediately, paste its mint address (into search or GET /v1/tokens/:mint).

bash
curl -H "x-api-key: $VENUM_API_KEY" \
  "https://api.venum.dev/v1/tokens/search?q=bonk&limit=10"

Common Examples

Examples of tracked tokens include:

  • SOL
  • USDC
  • USDT
  • JUP
  • JTO
  • PYTH
  • BONK
  • WIF
  • mSOL
  • jitoSOL

Categories

Tracked tokens are grouped into categories such as:

  • native
  • stablecoin
  • lst
  • defi
  • memecoin
  • wrapped
  • other

Where Supported Tokens Work

Tracked token symbols can be used in many Venum APIs instead of pasting a mint manually.

Examples:

  • prices
  • quotes
  • swap build
  • balance history

If you want the exact supported list at any moment, always use:

Example

bash
curl https://api.venum.dev/v1/tokens

You can also filter by category:

bash
curl "https://api.venum.dev/v1/tokens?category=stablecoin"