GET /v2/dex/raydium/pools
Returns top Raydium AMM pools on Solana, ordered by 24h volume. Sourced directly from Raydium’s on-chain liquidity data.
Query Parameters
Number of pools to return. Maximum: 100.
Example
curl "https://api.crypton.dev/v2/dex/raydium/pools?limit=10" \
-H "X-API-Key: YOUR_API_KEY"
{
"status" : "ok" ,
"timestamp" : 1711670400000 ,
"data" : {
"pools" : [
{
"pool_id" : "58oQChx4yWmvKdwLLZzBi4ChoCc2fqCUWBkwMihLYQo2" ,
"pool_type" : "Standard" ,
"mint_a" : "So11111111111111111111111111111111111111112" ,
"mint_b" : "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v" ,
"symbol_a" : "SOL" ,
"symbol_b" : "USDC" ,
"tvl" : 45000000.0 ,
"volume_24h" : 120000000.0 ,
"fee_24h" : 360000.0 ,
"apr_24h" : 292.0
}
],
"count" : 10
}
}
Response Fields
Solana pool account address.
Pool type (e.g., Standard, Concentrated).
Token A symbol (if resolved).
Token B symbol (if resolved).
Total Value Locked in USD.
24-hour trading volume in USD.
Fees generated in last 24 hours (USD).
Annualized return based on 24h fees (%).
Data Source
Data Source — Direct integration with Raydium’s liquidity protocol
Real-time Raydium pool and liquidity data. Covers Standard AMM, Concentrated Liquidity (CLMM), and CP pools. Sorted by 24h volume descending.
Live Testing
# Top 5 Raydium pools by volume
curl -s "https://api.crypton.dev/v2/dex/raydium/pools?limit=5" -H "X-API-Key: YOUR_KEY" \
| jq '[.data.pools[] | {pair: "\(.symbol_a // .mint_a[:8])/\(.symbol_b // .mint_b[:8])", vol_m: (.volume_24h / 1e6 | round), apr: .apr_24h}]'