/v1/pools
Top liquidity pools on a chain by volume
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/dexpaprika-api/v1/pools" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/dexpaprika-api/v1/pools", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/dexpaprika-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/dexpaprika-api/v1/pools",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "The top liquidity pools on one chain, ranked by 24h volume — each with its address, DEX, USD price, 24h volume, transaction count and recent price moves. Pass network (e.g. solana) and limit (default 20, max 100).",
"count": 20,
"pools": [
{
"id": "8sjV1AqBFvFuADBCQHhotaRq5DFFYSjjg1jMyVWMqXvZ",
"dex_id": "manifest",
"tokens": [
{
"id": "Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB",
"symbol": "USDT"
},
{
"id": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"symbol": "USDC"
}
],
"dex_name": "Manifest",
"price_usd": 1.000004901574958,
"created_at": "2026-04-15T07:58:42Z",
"transactions": 101075,
"volume_usd_24h": 62164962.92213408,
"price_change_1h": 0.0001912258018581242,
"price_change_24h": 0.00034585934405360674
},
{
"id": "9Xkc97xdNpAVeY39qco5EgqZcanCc9NW575xqYXpfDim",
"dex_id": "pumpswap",
"tokens": [
{
"id": "So11111111111111111111111111111111111111112",
"symbol": "SOL"
},
{
"id": "8LMrN7qf4682mD78kQrKg8yw8DSA8YMH1epCkZkeCwyM",
"symbol": "SPCX"
}
],
"dex_name": "PumpSwap",
"price_usd": 68.5082782418885,
"created_at": "2026-06-13T22:31:36Z",
"transactions": 90259,
"volume_usd_24h": 46117675.256797455,
"price_change_1h": null,
"price_change_24h": -0.9374866017787269
},
{
"id": "A1txmRJa5xvbYwiRpLov4GqqH8EpGQPjL8ok7nnEtFHs",
"dex_id": "pumpswap",
"tokens": [
{
"id": "So11111111111111111111111111111111111111112",
"symbol": "SOL"
},
{
"id": "EKm93ZLthpixQoQ8Z7tVUACPviwuVRpaGRnmw2Fk5qK2",
"symbol": "SPCX"
}
],
"dex_name": "PumpSwap",
"price_usd": 67.65739678157644,
"created_at": "2026-06-14T07:45:33Z",
"transactions": 78374,
"volume_usd_24h": 45723876.751535684,
"price_change_1h": null,
"price_change_24h": -0.7093115986255419
},
{
"id": "25MizMk8Dp9o8RFC5DH7nvohCnh5bVvcNnkMkYEuCnab",
"dex_id": "pumpswap",
"tokens": [
…