/v1/pools
Top pools by liquidity, volume, APR or fees
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/raydium-api/v1/pools" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/raydium-api/v1/pools", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/raydium-api/v1/pools");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/raydium-api/v1/pools",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"sort": "liquidity",
"type": "all",
"count": 25,
"pools": [
{
"id": "iM3qCD3h5x83bwdRVrWC1SV7mF261E9U6jsFyhCZhxi",
"pair": "SAOS-USDC",
"type": "Concentrated",
"price": 0.00082391,
"mint_a": "3eB8npQ18hPmEsAF3snBPYFSVyoTSAyTDwdEJCVpM96V",
"mint_b": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"tvl_usd": 60969607.69,
"fee_rate": 0.0001,
"apr_24h_pct": 0,
"fee_24h_usd": 0.12,
"volume_24h_usd": 1209.34
},
{
"id": "3gmHqt2dq6xeWatew3dxREagBs6Jut8fhwRsrCg9dfEQ",
"pair": "USRUB-USDT",
"type": "Concentrated",
"price": 0.01000201,
"mint_a": "9Audab7xtUtHS2B6Tr7xJQtpUyANT3wgB8idsveLydME",
"mint_b": "Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB",
"tvl_usd": 36979008.36,
"fee_rate": 0.0001,
"apr_24h_pct": 0,
"fee_24h_usd": 0.04,
"volume_24h_usd": 401.16
},
{
"id": "AS5MV3ear4NZPMWXbCsEz3AdbCaXEnq4ChdaWsvLgkcM",
"pair": "USDS-USDC",
"type": "Concentrated",
"price": 1.00005994,
"mint_a": "USDSwr9ApdHk5bvJKMjzff41FfuX8bSxdKcR81vTwcA",
"mint_b": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"tvl_usd": 34003136.07,
"fee_rate": 0.0001,
"apr_24h_pct": 0.25,
"fee_24h_usd": 230.76,
"volume_24h_usd": 2307635.18
},
{
"id": "GcgDHAQXR8or73jiRLBmEUZmzfAfE2w1QVh5XR5VNSEM",
"pair": "#BTB-WETH",
"type": "Concentrated",
"price": 0.085848,
"mint_a": "21ycf3rhrY7C4oeY3iwmY5RZZw57HQjTB6HMAiTRNePm",
"mint_b": "7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs",
"tvl_usd": 28044227.99,
"fee_rate": 0.0025,
"apr_24h_pct": 0,
"fee_24h_usd": 0,
"volume_24h_usd": 0
},
{
"id": "DmfYqsa9MRUntvV6cspNQhBDzAcFRKD1FP4gYCR3UpFG",
"pair": "#BTB-WBTC",
"type": "Concentrated",
"price": 0.00255169,
"mint_a": "21ycf3rhrY7C4oeY3iwmY5RZZw57HQjTB6HMAiTRNePm",
"mint_b": "5XZw2LKTyrfvfiskJ78AMpackRjPcyCif1WhUsPDuVqQ",
"tvl_usd": 28044226.17,
"fee_rate": 0.0025,
"apr_24h_pct": 0,
"fee_24h_usd": 0,
"volume_24h_usd": 0
},
{
"id": "5vqdPAPQUp29UJoLMxGru3aAF1MuzRUUasMPwkUV7p4S",
"pair": "USDS-#BTB",
"type": "Concentrat
…