Zum Inhalt springen
GET /v1/oi

Open-interest distribution by strike

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "note": "open interest by strike for the expiry; the highest-OI strikes act as magnets / walls (support & resistance).",
        "expiry": "26JUN26",
        "source": "Deribit",
        "strikes": 66,
        "currency": "BTC",
        "distribution": [
            {
                "put_oi": 4610.1,
                "strike": 20000,
                "call_oi": 102.6,
                "total_oi": 4712.7
            },
            {
                "put_oi": 3119.7,
                "strike": 30000,
                "call_oi": 81.2,
                "total_oi": 3200.9
            },
            {
                "put_oi": 3711.9,
                "strike": 40000,
                "call_oi": 34.2,
                "total_oi": 3746.1
            },
            {
                "put_oi": 4278.7,
                "strike": 45000,
                "call_oi": 46.4,
                "total_oi": 4325.1
            },
            {
                "put_oi": 3772.4,
                "strike": 50000,
                "call_oi": 373.3,
                "total_oi": 4145.7
            },
            {
                "put_oi": 1248.6,
                "strike": 52000,
                "call_oi": 0,
                "total_oi": 1248.6
            },
            {
                "put_oi": 3410.6,
                "strike": 55000,
                "call_oi": 237.1,
                "total_oi": 3647.7
            },
            {
                "put_oi": 421.1,
                "strike": 57000,
                "call_oi": 0,
                "total_oi": 421.1
            },
            {
                "put_oi": 1464.6,
                "strike": 58000,
                "call_oi": 71.1,
                "total_oi": 1535.7
            },
            {
                "put_oi": 522.7,
                "strike": 59000,
                "call_oi": 5,
                "total_oi": 527.7
            },
            {
                "put_oi": 5076.1,
                "strike": 60000,
                "call_oi": 514.9,
                "total_oi": 5591
            },
            {
                "put_oi": 321.5,
                "strike": 61000,
                "call_oi": 262.1,
                "total_oi": 583.6
            },
            {
                "put_oi": 2486.6,
                "strike": 62000,
                "call_oi": 240.7,
                "total_oi": 2727.3
            },
            {
                "put_oi": 200.7,
                "strike": 63000,
                "call_oi": 292.2,
                "total_oi": 492.9
            },
            {
                "put_oi": 1174,
                "strike": 64000,
                "call_oi": 313.7,
                "total_oi": 1487.7
            },
            {
                "put_oi": 2815.8,
                "strike": 65000,
                "call_oi": 1800.5,
                "total_oi": 4616.3
            },
            {
                "put_oi": 1201.7,
                "strike": 66000,
                "call_oi": 
…