/v1/sector
One sector RRG coordinates and quadrant
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/rrg-api/v1/sector" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/rrg-api/v1/sector", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/rrg-api/v1/sector");
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/rrg-api/v1/sector",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"key": "technology",
"name": "Technology",
"note": "One sector's RRG coordinates versus the S&P 500: rs_ratio (relative strength, >100 = outperforming) and rs_momentum (>100 = improving), with its rotation quadrant.",
"source": "Yahoo Finance",
"quadrant": "weakening",
"rs_ratio": 100.91,
"benchmark": "S&P 500",
"rs_momentum": 97.35,
"quadrant_meaning": "strong but losing momentum — leaders rolling over"
},
"meta": {
"timestamp": "2026-06-12T10:34:57.811Z",
"request_id": "2757baa5-58d0-4b10-b2a2-090d537be162"
},
"status": "ok",
"message": "Sector retrieved successfully",
"success": true
}