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.

Use the Data API to research any Solana token. You can pull basic info, live stats, holder breakdowns, recent trades, and on-chain events. These pieces give you what you need for a token dashboard or research tool.

Get Token Info

The token information endpoint returns metadata and market data for any token.
curl "https://data.solanatracker.io/tokens/{tokenAddress}" \
  -H "x-api-key: YOUR_API_KEY"

Token Stats

The token stats endpoint gives you trading volume, buy/sell counts, and unique trader counts across time windows.
curl "https://data.solanatracker.io/stats/{token}" \
  -H "x-api-key: YOUR_API_KEY"
Returns stats broken down by 5m, 1h, 6h, and 24h windows including:
  • Buy and sell volume (USD)
  • Number of buys and sells
  • Unique buyers and sellers
  • Price change percentage

Token Holders

Top 100

The top 100 holders endpoint returns the largest token holders.
curl "https://data.solanatracker.io/tokens/{token}/holders" \
  -H "x-api-key: YOUR_API_KEY"

All Holders (Paginated)

For the full holder list, use the paginated holders endpoint:
# Page 1
curl "https://data.solanatracker.io/tokens/{token}/holders/paginated?page=1&limit=100" \
  -H "x-api-key: YOUR_API_KEY"

Recent Trades

The token trades endpoint returns the most recent buys and sells.
curl "https://data.solanatracker.io/trades/{token}" \
  -H "x-api-key: YOUR_API_KEY"
You can also filter trades by pool or by a specific wallet:
# Trades on a specific pool
curl "https://data.solanatracker.io/trades/{token}/{pool}" \
  -H "x-api-key: YOUR_API_KEY"

# Trades by a specific wallet
curl "https://data.solanatracker.io/trades/{token}/by-wallet/{wallet}" \
  -H "x-api-key: YOUR_API_KEY"

Token Events

The token events endpoint returns on-chain events like liquidity adds/removes, pool creation, and burns. Liquidity means the funds in a pool that let people trade.
curl "https://data.solanatracker.io/events/{token}" \
  -H "x-api-key: YOUR_API_KEY"

Search for Tokens

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

# Search by exact symbol
curl "https://data.solanatracker.io/search?symbol=BONK" \
  -H "x-api-key: YOUR_API_KEY"

Discover New Tokens

Latest Tokens

Most recently created tokens on Solana.

Trending Tokens

Tokens with the most activity right now.

Graduating Tokens

Tokens about to graduate from pump.fun.

Top Performers

Biggest gainers across different timeframes.

All-Time High

Check if a token is near or far from its ATH:
curl "https://data.solanatracker.io/tokens/{token}/ath" \
  -H "x-api-key: YOUR_API_KEY"

Price & Charts

Fetch chart candles, historical prices, and multi-token price snapshots.

Sniper Detection

Find early buyers, bundled launches, and suspicious wallet activity on a token.