/v1/ratio
Headline put/call ratios + sentiment
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/putcallratio-api/v1/ratio" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/putcallratio-api/v1/ratio", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/putcallratio-api/v1/ratio");
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/putcallratio-api/v1/ratio",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"iv30": 23.027,
"price": 295.84,
"source": "CBOE",
"symbol": "AAPL",
"sentiment": "neutral to bullish",
"change_pct": 1.389,
"total_put_oi": 2201436,
"put_contracts": 1852,
"security_type": "stock",
"total_call_oi": 3120398,
"call_contracts": 1852,
"total_put_volume": 370202,
"put_call_ratio_oi": 0.7055,
"total_call_volume": 580535,
"put_call_ratio_volume": 0.6377
},
"meta": {
"timestamp": "2026-06-12T01:41:36.048Z",
"request_id": "4385a06f-d495-41a3-8a7b-90c21b1bf3bd"
},
"status": "ok",
"message": "Put/call ratio retrieved successfully",
"success": true
}