Skip to main content
Pump.fun is the leading memecoin launchpad on Solana. ChainStream provides full data coverage for Pump.fun tokens through REST API, GraphQL, WebSocket, and MCP Tools.
Supported operations: Token discovery, price tracking, trade analysis, holder analytics, token creation (via pumpfun_create), and graduation/migration tracking.

How do I discover new Pump.fun tokens?

Use the ranking endpoints to find newly created tokens on the Pump.fun launchpad.
curl "https://api.chainstream.io/v2/ranking/sol/newTokens" \
  -H "X-API-KEY: your_api_key"
See Ranking - New Tokens for full parameter reference.

How do I get the price of a Pump.fun token?

curl "https://api.chainstream.io/v2/token/sol/TOKEN_ADDRESS/price" \
  -H "X-API-KEY: your_api_key"
See Token - Price for full reference.
Replace TOKEN_ADDRESS with the actual Pump.fun token mint address.

How do I get trades for a Pump.fun token?

curl "https://api.chainstream.io/v2/trade/sol?tokenAddress=TOKEN_ADDRESS&limit=20" \
  -H "X-API-KEY: your_api_key"
See Trade - List for full reference.

How do I get top holders of a Pump.fun token?

curl "https://api.chainstream.io/v2/token/sol/TOKEN_ADDRESS/topHolders" \
  -H "X-API-KEY: your_api_key"
See Token - Top Holders for full reference.

How do I get OHLCV (K-line) data for a Pump.fun token?

curl "https://api.chainstream.io/v2/token/sol/TOKEN_ADDRESS/candles?resolution=1m&limit=60" \
  -H "X-API-KEY: your_api_key"
See Token - Candles for full reference.

How do I track Pump.fun tokens about to graduate?

Tokens in the “final stretch” are close to meeting the bonding curve graduation threshold and migrating to Raydium.
curl "https://api.chainstream.io/v2/ranking/sol/finalStretch" \
  -H "X-API-KEY: your_api_key"
See Ranking - Final Stretch for full reference.

How do I find tokens that graduated from Pump.fun?

Graduated tokens have completed the bonding curve and migrated to a Raydium liquidity pool.
curl "https://api.chainstream.io/v2/ranking/sol/migrated" \
  -H "X-API-KEY: your_api_key"
See Ranking - Migrated for full reference.

How do I get the top traders for a Pump.fun token?

curl "https://api.chainstream.io/v2/trade/sol/top-traders?tokenAddress=TOKEN_ADDRESS" \
  -H "X-API-KEY: your_api_key"
See Trade - Top Traders for full reference.

How do I check a Pump.fun token’s security?

curl "https://api.chainstream.io/v2/token/sol/TOKEN_ADDRESS/security" \
  -H "X-API-KEY: your_api_key"
See Token - Security for full reference.

How do I create a token on Pump.fun?

ChainStream supports creating tokens on Pump.fun directly via API.
curl -X POST "https://api.chainstream.io/v2/dex/sol/create" \
  -H "X-API-KEY: your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "launchpad": "pumpfun",
    "name": "My Token",
    "symbol": "MYTKN",
    "description": "A test token",
    "privateKey": "YOUR_PRIVATE_KEY"
  }'
See DEX - Create for full reference.
Token creation requires a funded Solana wallet. The private key is used to sign the creation transaction.

How do I get the developer’s other tokens?

Find all tokens created by a specific developer address on Solana.
curl "https://api.chainstream.io/v2/token/sol/dev/DEV_ADDRESS/tokens" \
  -H "X-API-KEY: your_api_key"
See Token - Dev Tokens for full reference.

FAQ

When a Pump.fun token’s bonding curve reaches 100%, it “graduates” — the liquidity is migrated to a Raydium pool and the token begins trading on the open market. Use the ranking/sol/finalStretch endpoint to track tokens approaching graduation, and ranking/sol/migrated for tokens that have already graduated.
The GraphQL DEXTrades Cube has a default filter IsSuspect = false that automatically excludes suspected bot and MEV trades. For REST API, check the trade response for the isSuspect field.
Yes. Use WebSocket subscriptions for real-time price updates and trade streams. See Real-time Streaming for setup instructions.
Pump.fun is a Solana-only launchpad. Use chain: sol (REST) or network: sol (GraphQL) for all Pump.fun queries.

GraphQL DEX Trades

More GraphQL query examples for DEX trade analysis.

Token Analysis Framework

Comprehensive token evaluation methodology.

MCP Tools Catalog

Full list of 50+ MCP tools for AI agent integration.

Raydium Guide

Raydium DEX trading and liquidity analysis.