Skip to main content
Raydium is the largest AMM and liquidity provider on Solana. ChainStream provides full data coverage for Raydium trades and pools through REST API, GraphQL, WebSocket, and MCP Tools.
Supported operations: Trade analysis, liquidity pool monitoring, token price tracking, OHLCV data, holder analytics, and token creation via Raydium launchpad.

How do I get recent trades on Raydium?

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

How do I get the price of a token on Raydium?

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

How do I get liquidity pools for a token on Raydium?

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

How do I get pool details by address?

curl "https://api.chainstream.io/v2/dexpools/sol/POOL_ADDRESS" \
  -H "X-API-KEY: your_api_key"
See DexPool - Get for full reference.

How do I get OHLCV (K-line) data for a Raydium token?

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

How do I get token holders on Raydium?

curl "https://api.chainstream.io/v2/token/sol/TOKEN_ADDRESS/topHolders" \
  -H "X-API-KEY: your_api_key"

How do I get top traders for a Raydium token?

curl "https://api.chainstream.io/v2/trade/sol/top-traders?tokenAddress=TOKEN_ADDRESS" \
  -H "X-API-KEY: your_api_key"

How do I get pool liquidity snapshots?

curl "https://api.chainstream.io/v2/dexpools/sol/POOL_ADDRESS/snapshots" \
  -H "X-API-KEY: your_api_key"
See DexPool - Snapshots for full reference.

How do I create a token on Raydium?

ChainStream supports creating tokens on Raydium launchpad 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": "raydium",
    "name": "My Token",
    "symbol": "MYTKN",
    "description": "A test token",
    "privateKey": "YOUR_PRIVATE_KEY"
  }'
See DEX - Create for full reference.
Token creation is only available on Solana. The private key is used to sign the creation transaction.

FAQ

Pump.fun tokens trade on a bonding curve until graduation; once they graduate, liquidity is migrated to a Raydium AMM pool. Use ranking/sol/migrated to find recently graduated tokens.
In GraphQL, use the dexProgram selector to filter by Raydium’s program address. In REST, trades are returned across all DEXes — check the dex field in the response to identify Raydium trades.
Yes. Use WebSocket subscriptions for real-time pool and trade updates. See Real-time Streaming for setup instructions.

Pump.fun Guide

Complete Pump.fun token analysis including graduation tracking.

GraphQL Pools & Liquidity

GraphQL query examples for pool and liquidity data.

GraphQL DEX Trades

GraphQL query examples for DEX trade analysis.

MCP Tools Catalog

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