Ir al contenido
GET /v1/meta

Service metadata

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

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

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/hyperliquid-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/hyperliquid-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/hyperliquid-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/hyperliquid-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": {
        "source": "Hyperliquid info API (api.hyperliquid.xyz, live)",
        "service": "hyperliquid-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/perp": "One perpetual market's full state by coin (coin=BTC).",
            "GET /v1/spot": "Spot markets with price, 24h volume and circulating supply (limit=100).",
            "GET /v1/perps": "Every perp market with mark price, funding, open interest, 24h volume, leverage (limit=100).",
            "GET /v1/stats": "Exchange-wide open interest, 24h volume and market counts."
        },
        "description": "Live data from Hyperliquid, the leading on-chain perpetual-futures and spot DEX (its own L1 order book), via its public info API. The perps endpoint returns every perpetual market with mark/oracle/mid price, hourly funding rate (and annualised), open interest (base and USD), 24h volume, 24h change and max leverage, sorted by volume; the perp endpoint returns one perpetual market by coin; the spot endpoint returns the spot markets with price, 24h volume and circulating supply; the stats endpoint returns exchange-wide open interest, 24h volume and market counts. Live, no key, nothing stored. Distinct from centralised-exchange tickers, aggregate derivatives feeds and price APIs — this is Hyperliquid's own on-chain perps order-book, funding and open-interest layer.",
        "upstream_status": "ok",
        "perp_market_count": 230
    },
    "meta": {
        "timestamp": "2026-06-10T22:58:05.500Z",
        "request_id": "7acaeb4c-e8ea-4845-8d01-da9cad1b3724"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}