Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.solanatracker.io/llms.txt

Use this file to discover all available pages before exploring further.

The Data API provides several endpoints for discovering tokens. Use them to build a token scanner, a trending feed, or a research dashboard.

Latest Tokens

The latest tokens endpoint returns the most recently created tokens on Solana.
curl "https://data.solanatracker.io/tokens/latest" \
  -H "x-api-key: YOUR_API_KEY"

The trending tokens endpoint returns tokens with the most activity right now.
curl "https://data.solanatracker.io/tokens/trending" \
  -H "x-api-key: YOUR_API_KEY"
Filter by timeframe:
# Trending in the last hour
curl "https://data.solanatracker.io/tokens/trending/1h" \
  -H "x-api-key: YOUR_API_KEY"

Tokens by Volume

The volume endpoint ranks tokens by trading volume.
# All-time volume leaders
curl "https://data.solanatracker.io/tokens/volume" \
  -H "x-api-key: YOUR_API_KEY"

# Volume in the last 24 hours
curl "https://data.solanatracker.io/tokens/volume/24h" \
  -H "x-api-key: YOUR_API_KEY"

Top Performers

The top performers endpoint returns the biggest price gainers across different timeframes.
# Top gainers in the last hour
curl "https://data.solanatracker.io/top-performers/1h" \
  -H "x-api-key: YOUR_API_KEY"

# Top gainers in the last 24 hours
curl "https://data.solanatracker.io/top-performers/24h" \
  -H "x-api-key: YOUR_API_KEY"

Graduating Tokens

Tokens on pump.fun go through a bonding curve before moving to a full DEX pool. A bonding curve is a pricing path that changes as people buy or sell before the token reaches a normal trading pool. These endpoints track that progression.

Currently Graduating

The graduating tokens endpoint returns tokens that are close to completing their bonding curve.
curl "https://data.solanatracker.io/tokens/multi/graduating" \
  -H "x-api-key: YOUR_API_KEY"

Already Graduated

The graduated tokens endpoint returns tokens that have completed their bonding curve and migrated to a DEX.
curl "https://data.solanatracker.io/tokens/multi/graduated" \
  -H "x-api-key: YOUR_API_KEY"

The search endpoint finds tokens by name, symbol, or address. Supports filtering and sorting.
# Search by name
curl "https://data.solanatracker.io/search?query=bonk" \
  -H "x-api-key: YOUR_API_KEY"

Tokens by Deployer

The deployer endpoint returns all tokens created by a specific wallet — useful for tracking serial deployers.
curl "https://data.solanatracker.io/deployer/{walletAddress}" \
  -H "x-api-key: YOUR_API_KEY"

Token Overview

The token overview endpoint returns a broad market overview of all tracked tokens.
curl "https://data.solanatracker.io/tokens/multi/all" \
  -H "x-api-key: YOUR_API_KEY"

Real-Time Streams

For live token discovery, use the Datastream WebSocket channels:
RoomWhat it streams
latestNewly created tokens as they appear
graduatingTokens approaching graduation
graduatedTokens that just graduated
token:{token}Pool state changes (price, liquidity, mcap)
stats:token:{token}Multi-timeframe statistics

Example: Build a Token Scanner

const headers = { "x-api-key": "YOUR_API_KEY" };

// 1. Get trending tokens
const trending = await fetch(
  "https://data.solanatracker.io/tokens/trending/1h", { headers }
).then(r => r.json());

// 2. Check top performers
const gainers = await fetch(
  "https://data.solanatracker.io/top-performers/1h", { headers }
).then(r => r.json());

// 3. Cross-reference: trending tokens that are also top gainers
const gainerAddresses = new Set(gainers.map(g => g.token.mint));
const hotTokens = trending.filter(t => gainerAddresses.has(t.token.mint));

console.log(`${hotTokens.length} tokens are both trending and top gainers:`);
hotTokens.forEach(t => {
  console.log(`  ${t.token.name} (${t.token.symbol})`);
});

Token Research

Deep-dive into any token: stats, holders, trades, and events.

Sniper Detection

Check if a new token has suspicious early buyer activity.

Token Discovery Streams

Stream new tokens, graduating tokens, and curve events in real time.

Safety Streams

Track snipers and bundlers on newly discovered tokens.