/v1/summary
Underlying quote + IV30 for a symbol
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/optionschain-api/v1/summary" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/optionschain-api/v1/summary", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/optionschain-api/v1/summary");
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/optionschain-api/v1/summary",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"ask": 295.85,
"bid": 295.8,
"low": 289.59,
"high": 297,
"iv30": 23.027,
"open": 293.71,
"close": 295.63,
"change": 4.05,
"source": "CBOE",
"symbol": "AAPL",
"volume": 42572497,
"change_pct": 1.389,
"prev_close": 291.58,
"iv30_change": 0,
"current_price": 295.84,
"security_type": "stock",
"iv30_change_pct": 0,
"last_trade_time": "2026-06-11T16:00:00"
},
"meta": {
"timestamp": "2026-06-12T01:41:42.585Z",
"request_id": "66d820b4-bc79-4312-8270-b3152ae3a6f6"
},
"status": "ok",
"message": "Summary retrieved successfully",
"success": true
}