Zum Inhalt springen
GET /v1/stats

Exchange-wide open interest, 24h volume and market counts

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/hyperliquid-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "source": "Hyperliquid",
        "perp_market_count": 230,
        "total_day_volume_usd": 6187638345.99,
        "total_open_interest_usd": 5647997113.35
    },
    "meta": {
        "timestamp": "2026-06-10T22:58:05.142Z",
        "request_id": "0822b78e-ec62-41ac-8c4b-d8d21a38fc83"
    },
    "status": "ok",
    "message": "Stats retrieved successfully",
    "success": true
}