/v1/meta
Endpoints & source
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/dexpaprika-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/dexpaprika-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/dexpaprika-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"sample": {
"pools": 34658985,
"chains": 35
},
"source": "DexPaprika public API (api.dexpaprika.com), keyless",
"service": "dexpaprika-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/dexes": "DEXes active on one chain (network, limit).",
"GET /v1/pools": "Top liquidity pools on a chain by volume (network, limit).",
"GET /v1/stats": "Global coverage totals (chains, pools, tokens).",
"GET /v1/token": "Token detail with price stats (network, address).",
"GET /v1/search": "Cross-chain search of tokens, pools and DEXes (query).",
"GET /v1/networks": "Every indexed chain with 24h volume, txns and pool count."
},
"description": "Live on-chain DEX market data across 35+ blockchains with no key: every network with its 24h DEX volume and pool count, the DEXes on any chain, the top liquidity pools ranked by volume, full token detail with multi-window price stats, a cross-chain search over tokens/pools/DEXes, and global totals. The on-chain / DEX / liquidity-pool layer for DeFi dashboards, token analytics and research. Distinct from centralized-exchange ticker readers. Live, short cache only.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-14T17:03:33.728Z",
"request_id": "c9d88625-9946-4062-baf2-c5cf10b8bfba"
},
"status": "ok",
"message": "Meta",
"success": true
}