Aller au contenu
GET /v1/sector

One sector RRG coordinates and quadrant

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/rrg-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
}