Ir al contenido
GET /v1/performance

Multi-period performance + ATH/ATL

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

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

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

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

{
    "data": {
        "vs": "usd",
        "ath": 126080,
        "atl": 67.81,
        "coin": "bitcoin",
        "name": "Bitcoin",
        "price": 61397,
        "source": "CoinGecko",
        "symbol": "btc",
        "low_24h": 60882,
        "ath_date": "2025-10-06T18:57:42.558Z",
        "atl_date": "2013-07-06T00:00:00.000Z",
        "high_24h": 62624,
        "change_pct": {
            "d7": -5.3676,
            "h1": 0.2722,
            "y1": -44.1439,
            "d14": -17.3908,
            "d30": -24.938,
            "h24": -0.4087,
            "d200": -27.2482
        },
        "market_cap": 1230488358299,
        "volume_24h": 27675393556,
        "ath_change_pct": -51.303,
        "atl_change_pct": 90444.2801,
        "market_cap_rank": 1
    },
    "meta": {
        "timestamp": "2026-06-10T22:56:13.349Z",
        "request_id": "db6c5c89-dbd1-490e-93e8-f6b0b330efd0"
    },
    "status": "ok",
    "message": "Performance retrieved successfully",
    "success": true
}