Ir al contenido
GET /v1/stats

Live perpetual stats for an asset

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

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

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

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

{
    "data": {
        "asset": "ETH",
        "venue": "Aevo",
        "market": "ETH-PERP",
        "source": "Aevo",
        "mark_price": 1661.235324,
        "volume_24h": 144629.98,
        "index_price": 1662.27735,
        "open_interest": 1701.128259,
        "buy_volume_24h": 112228.6,
        "sell_volume_24h": 32401.38,
        "funding_daily_avg": -1.0e-6,
        "mark_daily_change": 20.753925,
        "index_daily_change": 19.735637
    },
    "meta": {
        "timestamp": "2026-06-12T01:42:13.523Z",
        "request_id": "489cb2cd-c4ca-4faa-bb9a-c2c12f8e2443"
    },
    "status": "ok",
    "message": "Stats retrieved successfully",
    "success": true
}