Ir al contenido
GET /v1/meta

Provider metadata & endpoint guide

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

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

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/coinpaprika-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/coinpaprika-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/coinpaprika-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/coinpaprika-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": "Coins accepted by ticker (BTC) or CoinPaprika id (btc-bitcoin); on symbol collision the highest-ranked coin wins.",
        "source": "CoinPaprika public REST (api.coinpaprika.com/v1), keyless",
        "examples": {
            "coin": "/v1/coin?symbol=BTC",
            "global": "/v1/global",
            "tickers": "/v1/tickers?limit=25",
            "historical": "/v1/historical?symbol=ETH&interval=1d"
        },
        "provider": "CoinPaprika",
        "endpoints": {
            "/v1/coin": "single-coin ticker by symbol or id (symbol=BTC)",
            "/v1/global": "global market snapshot (total cap, 24h volume, BTC dominance, coin count)",
            "/v1/tickers": "ranked ticker list with price, market cap, volume & % changes (limit)",
            "/v1/historical": "daily historical price/volume/market-cap series (symbol, start, interval)"
        },
        "cache_ttl_ms": 30000
    },
    "meta": {
        "timestamp": "2026-06-15T11:15:45.756Z",
        "request_id": "934d856e-cfea-4fee-b26e-fa21d2a91aed"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}