Ir al contenido
GET /v1/meta

Endpoints & source

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/dexpaprika-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
}