/v1/networks
All indexed chains with volume & pool counts
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/networks" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/dexpaprika-api/v1/networks", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/dexpaprika-api/v1/networks");
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/networks",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "Every blockchain network DexPaprika indexes — each with its id (use it with the other endpoints), display name, 24h DEX volume, 24h transaction count and number of liquidity pools.",
"count": 35,
"source": "DexPaprika",
"networks": [
{
"id": "scroll",
"name": "Scroll",
"pools_count": 16,
"volume_usd_24h": 2003.3886596591683,
"transactions_24h": 166
},
{
"id": "katana",
"name": "Katana",
"pools_count": 38,
"volume_usd_24h": 489041.33623373404,
"transactions_24h": 4234
},
{
"id": "celo",
"name": "Celo",
"pools_count": 91,
"volume_usd_24h": 748684.6289808619,
"transactions_24h": 30010
},
{
"id": "unichain",
"name": "Unichain",
"pools_count": 196,
"volume_usd_24h": 3698776.076880844,
"transactions_24h": 19801
},
{
"id": "x_layer",
"name": "x Layer",
"pools_count": 69,
"volume_usd_24h": 6451095.287141886,
"transactions_24h": 32503
},
{
"id": "ethereum",
"name": "Ethereum",
"pools_count": 7613,
"volume_usd_24h": 1165078106.1287944,
"transactions_24h": 213393
},
{
"id": "aptos",
"name": "Aptos",
"pools_count": 136,
"volume_usd_24h": 7180298.716008828,
"transactions_24h": 25834
},
{
"id": "ton",
"name": "Ton",
"pools_count": 414,
"volume_usd_24h": 323023.2705196728,
"transactions_24h": 8670
},
{
"id": "ronin",
"name": "Ronin",
"pools_count": 324,
"volume_usd_24h": 645944.5685912727,
"transactions_24h": 25514
},
{
"id": "hyperevm",
"name": "HyperEVM",
"pools_count": 400,
"volume_usd_24h": 91415840.86381261,
"transactions_24h": 79850
},
{
"id": "mantle",
"name": "Mantle",
"pools_count": 26,
"volume_usd_24h": 330975.44540490623,
"transactions_24h": 869
},
{
"id": "megaeth",
"name": "MegaETH",
"pools_count": 43,
"volume_usd_24h": 2294861.0304232733,
"transactions_24h": 12874
},
…