Zum Inhalt springen
GET /v1/expiries

Available option expiries with strike range

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "asset": "ETH",
        "count": 10,
        "venue": "Aevo",
        "source": "Aevo",
        "expiries": [
            {
                "expiry": "2026-06-12",
                "strikes": 52,
                "max_strike": 2600,
                "min_strike": 1350
            },
            {
                "expiry": "2026-06-13",
                "strikes": 30,
                "max_strike": 1900,
                "min_strike": 1400
            },
            {
                "expiry": "2026-06-14",
                "strikes": 32,
                "max_strike": 1900,
                "min_strike": 1400
            },
            {
                "expiry": "2026-06-19",
                "strikes": 48,
                "max_strike": 2600,
                "min_strike": 1300
            },
            {
                "expiry": "2026-06-26",
                "strikes": 126,
                "max_strike": 15000,
                "min_strike": 500
            },
            {
                "expiry": "2026-07-31",
                "strikes": 84,
                "max_strike": 4400,
                "min_strike": 1000
            },
            {
                "expiry": "2026-08-28",
                "strikes": 64,
                "max_strike": 3800,
                "min_strike": 1100
            },
            {
                "expiry": "2026-09-25",
                "strikes": 118,
                "max_strike": 16000,
                "min_strike": 1000
            },
            {
                "expiry": "2026-12-25",
                "strikes": 88,
                "max_strike": 11000,
                "min_strike": 800
            },
            {
                "expiry": "2027-03-26",
                "strikes": 76,
                "max_strike": 6000,
                "min_strike": 900
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-12T01:42:13.613Z",
        "request_id": "2308e447-8ab4-4db6-96d3-aade652e8397"
    },
    "status": "ok",
    "message": "Expiries retrieved successfully",
    "success": true
}