Μετάβαση στο περιεχόμενο
GET /v1/sector

One sector RRG coordinates and quadrant

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/rrg-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

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