Μετάβαση στο περιεχόμενο
GET /v1/meta

Service metadata

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/hyperliquid-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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_..."}
)

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "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
}