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

Every perp market with mark price, funding, open interest, volume, leverage

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

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

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

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

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

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

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

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

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

{
    "data": {
        "count": 100,
        "perps": [
            {
                "coin": "BTC",
                "premium": -0.0002978807,
                "mid_price": 61406.5,
                "mark_price": 61405,
                "max_leverage": 40,
                "oracle_price": 61434,
                "open_interest": 31343.72984,
                "day_change_pct": -0.4604,
                "day_volume_usd": 2981716382.68,
                "funding_hourly": 6.7352e-6,
                "funding_apr_pct": 5.9,
                "open_interest_usd": 1924661730.83
            },
            {
                "coin": "ETH",
                "premium": -0.0006795997,
                "mid_price": 1617.45,
                "mark_price": 1617.5,
                "max_leverage": 25,
                "oracle_price": 1618.6,
                "open_interest": 732605.857,
                "day_change_pct": -1.3058,
                "day_volume_usd": 1368096459.95,
                "funding_hourly": -1.7921e-6,
                "funding_apr_pct": -1.5699,
                "open_interest_usd": 1184989973.7
            },
            {
                "coin": "HYPE",
                "premium": 0.0007680492,
                "mid_price": 53.4235,
                "mark_price": 53.424,
                "max_leverage": 10,
                "oracle_price": 53.382,
                "open_interest": 20340134.5,
                "day_change_pct": -7.2275,
                "day_volume_usd": 901465794.32,
                "funding_hourly": 1.25e-5,
                "funding_apr_pct": 10.95,
                "open_interest_usd": 1086651345.53
            },
            {
                "coin": "SOL",
                "premium": -0.000529538,
                "mid_price": 62.8465,
                "mark_price": 62.84,
                "max_leverage": 20,
                "oracle_price": 62.885,
                "open_interest": 3921692.4,
                "day_change_pct": -3.1159,
                "day_volume_usd": 246416656.78,
                "funding_hourly": -2.10416e-5,
                "funding_apr_pct": -18.4324,
                "open_interest_usd": 246439150.42
            },
            {
                "coin": "ZEC",
                "premium": -0.0001949055,
                "mid_price": 407.71,
                "mark_price": 407.51,
                "max_leverage": 10,
                "oracle_price": 407.89,
                "open_interest": 445085.36,
                "day_change_pct": -4.1581,
                "day_volume_usd": 242763843.77,
                "funding_hourly": -8.7634e-5,
                "funding_apr_pct": -76.7674,
                "open_interest_usd": 181376735.05
            },
            {
                "coin": "WLD",
                "premium": -0.0007508532,
                "mid_price": 0.43894,
                "mark_price": 0.43889,
                "max_leverage": 10,
                "oracle_price": 0.4395,
                "open_interest": 88113595.6,
                "
…