Naar de inhoud
GET /v1/percentile

Where today's contango ratio sits in its one-year range

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/vixterm-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "note": "Where today's VIX/VIX3M contango ratio sits within its 251-day range (percentile). A low percentile = unusually steep contango (calm); a ratio above 1 = the curve has inverted (stress). Read fresh per call, lightly cached.",
        "read": "contango within its normal range",
        "slope": "contango",
        "source": "Yahoo Finance (^VIX, ^VIX3M)",
        "avg_ratio": 0.8767,
        "max_ratio": 1.07,
        "min_ratio": 0.758,
        "percentile": 74.5,
        "window_days": 251,
        "contango_ratio": 0.9076
    },
    "meta": {
        "timestamp": "2026-06-12T10:34:36.870Z",
        "request_id": "4b7623ef-9722-4883-8c4d-1113f28afe42"
    },
    "status": "ok",
    "message": "Contango percentile retrieved successfully",
    "success": true
}