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

Latest open interest + change and trend

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

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

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

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

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

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

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

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

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

{
    "data": {
        "from": "2026-06-08T03:00:00.000Z",
        "as_of": "2026-06-09T03:00:00.000Z",
        "trend": "rising",
        "period": "1h",
        "symbol": "BTCUSDT",
        "change_pct": 2.71,
        "last_price": 62807.5,
        "open_interest": 54894.318,
        "lookback_buckets": 24,
        "open_interest_ago": 53446.06,
        "open_interest_value_usd": 3437587201.86
    },
    "meta": {
        "timestamp": "2026-06-09T03:02:49.022Z",
        "request_id": "50833bd6-cabb-43f2-ad9f-1bc659c84862"
    },
    "status": "ok",
    "message": "Open interest retrieved successfully",
    "success": true
}