Ir al contenido
GET /v1/historical

Daily historical price/volume/market-cap series

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/historical" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/coinpaprika-api/v1/historical", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/coinpaprika-api/v1/historical");
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/historical",
    headers={"x-oanor-key": "oanor_test_..."}
)

Respuesta de ejemplo

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

{
    "data": {
        "id": "eth-ethereum",
        "count": 15,
        "start": "2026-06-01",
        "points": [
            {
                "price_usd": 1989.5,
                "timestamp": "2026-06-01T00:00:00Z",
                "market_cap_usd": 239588514695,
                "volume_24h_usd": 10632513351
            },
            {
                "price_usd": 1952.49,
                "timestamp": "2026-06-02T00:00:00Z",
                "market_cap_usd": 235131407321,
                "volume_24h_usd": 14290367516
            },
            {
                "price_usd": 1849.39,
                "timestamp": "2026-06-03T00:00:00Z",
                "market_cap_usd": 222714876598,
                "volume_24h_usd": 19993365650
            },
            {
                "price_usd": 1773.29,
                "timestamp": "2026-06-04T00:00:00Z",
                "market_cap_usd": 213550354608,
                "volume_24h_usd": 21807734728
            },
            {
                "price_usd": 1652.26,
                "timestamp": "2026-06-05T00:00:00Z",
                "market_cap_usd": 198975681606,
                "volume_24h_usd": 23191981219
            },
            {
                "price_usd": 1563.52,
                "timestamp": "2026-06-06T00:00:00Z",
                "market_cap_usd": 188288807673,
                "volume_24h_usd": 25491075686
            },
            {
                "price_usd": 1619.43,
                "timestamp": "2026-06-07T00:00:00Z",
                "market_cap_usd": 195022407897,
                "volume_24h_usd": 12545936165
            },
            {
                "price_usd": 1681.6,
                "timestamp": "2026-06-08T00:00:00Z",
                "market_cap_usd": 202509416458,
                "volume_24h_usd": 13656264695
            },
            {
                "price_usd": 1662.7,
                "timestamp": "2026-06-09T00:00:00Z",
                "market_cap_usd": 200232612505,
                "volume_24h_usd": 12509638483
            },
            {
                "price_usd": 1630.12,
                "timestamp": "2026-06-10T00:00:00Z",
                "market_cap_usd": 196309463707,
                "volume_24h_usd": 9910206564
            },
            {
                "price_usd": 1655.85,
                "timestamp": "2026-06-11T00:00:00Z",
                "market_cap_usd": 199408005427,
                "volume_24h_usd": 9699826021
            },
            {
                "price_usd": 1668.07,
                "timestamp": "2026-06-12T00:00:00Z",
                "market_cap_usd": 200879463004,
                "volume_24h_usd": 8727803870
            },
            {
                "price_usd": 1673.66,
                "timestamp": "2026-06-13T00:00:00Z",
                "market_cap_usd": 201552810217,
                "volume_24h_usd": 5901978566
            },
            {
                "price_usd": 1677.01,
                "timestamp": "2026-06-14T00:00:00Z",
  
…