Zum Inhalt springen
GET /v1/expiries

Listed expiries with aggregate OI

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

Beispiel-Response

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

{
    "data": {
        "count": 12,
        "source": "Deribit",
        "currency": "BTC",
        "expiries": [
            {
                "expiry": "12JUN26",
                "put_oi": 14352.1,
                "call_oi": 20873.8,
                "total_oi": 35225.9,
                "contracts": 80
            },
            {
                "expiry": "13JUN26",
                "put_oi": 3756.5,
                "call_oi": 1335.8,
                "total_oi": 5092.3,
                "contracts": 48
            },
            {
                "expiry": "14JUN26",
                "put_oi": 1190.1,
                "call_oi": 445.5,
                "total_oi": 1635.6,
                "contracts": 46
            },
            {
                "expiry": "15JUN26",
                "put_oi": 277.6,
                "call_oi": 501.3,
                "total_oi": 778.9,
                "contracts": 44
            },
            {
                "expiry": "19JUN26",
                "put_oi": 9275.2,
                "call_oi": 14128.4,
                "total_oi": 23403.6,
                "contracts": 60
            },
            {
                "expiry": "26JUN26",
                "put_oi": 66247.6,
                "call_oi": 85311.1,
                "total_oi": 151558.7,
                "contracts": 132
            },
            {
                "expiry": "3JUL26",
                "put_oi": 369.1,
                "call_oi": 246.6,
                "total_oi": 615.7,
                "contracts": 26
            },
            {
                "expiry": "31JUL26",
                "put_oi": 12186.5,
                "call_oi": 37361.8,
                "total_oi": 49548.3,
                "contracts": 114
            },
            {
                "expiry": "28AUG26",
                "put_oi": 3185.7,
                "call_oi": 5638.2,
                "total_oi": 8823.9,
                "contracts": 98
            },
            {
                "expiry": "25SEP26",
                "put_oi": 27774.3,
                "call_oi": 49184,
                "total_oi": 76958.3,
                "contracts": 120
            },
            {
                "expiry": "25DEC26",
                "put_oi": 27788,
                "call_oi": 52469.3,
                "total_oi": 80257.3,
                "contracts": 114
            },
            {
                "expiry": "26MAR27",
                "put_oi": 6696.2,
                "call_oi": 12465.8,
                "total_oi": 19162,
                "contracts": 102
            }
        ],
        "underlying_price": 63513.25
    },
    "meta": {
        "timestamp": "2026-06-12T01:41:14.637Z",
        "request_id": "179882e1-7f5b-4ed1-bdd4-64545e5e4d6b"
    },
    "status": "ok",
    "message": "Expiries retrieved successfully",
    "success": true
}