Tokens
Discover supported tokens with mint addresses, decimals, and categories.
Free, no auth required.
GET /v1/tokens
List all supported tokens.
Query parameters:
category— (optional) filter by category:native,stablecoin,lst,defi,memecoin,wrapped
Response:
json
{
"tokens": [
{
"symbol": "SOL",
"mint": "So11111111111111111111111111111111111111112",
"decimals": 9,
"category": "native"
},
{
"symbol": "USDC",
"mint": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"decimals": 6,
"category": "stablecoin"
},
{
"symbol": "WBTC",
"mint": "3NZ9JMVBmGAqocybic2c7LQCJScmgsAZ6vQqTDzcqmJh",
"decimals": 8,
"category": "wrapped",
"aliases": ["BTC"]
}
],
"count": 42,
"categories": ["defi", "lst", "memecoin", "native", "stablecoin", "wrapped"]
}Categories:
| Category | Description | Examples |
|---|---|---|
native | Solana native token | SOL |
stablecoin | USD-pegged stablecoins | USDC, USDT, PYUSD, USDS, JupUSD |
lst | Liquid staking tokens | jitoSOL, mSOL, bSOL, jupSOL |
defi | DeFi protocol tokens | JUP, RAY, ORCA, PYTH, RENDER |
memecoin | Memecoins | BONK, WIF, TRUMP, PENGU |
wrapped | Wrapped tokens from other chains | WBTC, WETH, cbBTC |
Aliases: Some tokens have common aliases (e.g., WBTC can be referenced as BTC in price/pool endpoints).
Examples:
bash
# All tokens
curl https://api.venum.dev/v1/tokens
# Only LSTs
curl https://api.venum.dev/v1/tokens?category=lst
# Only memecoins
curl https://api.venum.dev/v1/tokens?category=memecoin