Ir al contenido
GET /v1/meta

Service metadata and endpoint list

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/cryptoexchanges-api

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

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/cryptoexchanges-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptoexchanges-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptoexchanges-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/cryptoexchanges-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": {
        "note": "Volumes in USD. adjusted = wash-trade-filtered (CoinPaprika).",
        "source": "CoinPaprika API (api.coinpaprika.com, live)",
        "service": "cryptoexchanges-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/search": "Find exchanges by name (q=binance).",
            "GET /v1/markets": "An exchange's trading pairs by 24h volume (id=binance, limit=50).",
            "GET /v1/exchange": "One exchange's full profile (id=binance).",
            "GET /v1/exchanges": "Crypto exchanges ranked by 24h volume (limit=50, active=true)."
        },
        "description": "Live rankings and comparison of crypto exchanges from the public CoinPaprika feed. The exchanges endpoint ranks every crypto exchange by adjusted 24h volume with its 7d/30d volume, number of markets and currencies and confidence score; the exchange endpoint returns one exchange's full profile (volumes, market count, website and social links, status); the markets endpoint lists an exchange's trading pairs with price and 24h volume; the search endpoint finds exchanges by name. Live, no key, nothing stored. A cross-exchange comparison layer, distinct from single-exchange ticker feeds and whole-market price feeds — it answers which venues are biggest and what they trade.",
        "exchange_count": 1114,
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-10T22:56:18.880Z",
        "request_id": "598fb7a2-6f5d-4fd8-adf7-62bd6bf2804b"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}