Zum Inhalt springen
GET /v1/universe

Supported instruments

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/relativestrength-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/relativestrength-api/v1/universe" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/relativestrength-api/v1/universe", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/relativestrength-api/v1/universe");
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/relativestrength-api/v1/universe",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "note": "Supported instruments, all measured against the S&P 500. Pass key as asset= to /v1/asset, class= to /v1/ranking.",
        "count": 23,
        "assets": [
            {
                "key": "nasdaq100",
                "class": "equities",
                "label": "Nasdaq 100",
                "symbol": "QQQ"
            },
            {
                "key": "small_caps",
                "class": "equities",
                "label": "US Small Caps",
                "symbol": "IWM"
            },
            {
                "key": "developed_intl",
                "class": "equities",
                "label": "Developed ex-US",
                "symbol": "EFA"
            },
            {
                "key": "emerging",
                "class": "equities",
                "label": "Emerging Markets",
                "symbol": "EEM"
            },
            {
                "key": "technology",
                "class": "sector",
                "label": "Technology",
                "symbol": "XLK"
            },
            {
                "key": "financials",
                "class": "sector",
                "label": "Financials",
                "symbol": "XLF"
            },
            {
                "key": "energy",
                "class": "sector",
                "label": "Energy",
                "symbol": "XLE"
            },
            {
                "key": "health_care",
                "class": "sector",
                "label": "Health Care",
                "symbol": "XLV"
            },
            {
                "key": "consumer_discretionary",
                "class": "sector",
                "label": "Consumer Discretionary",
                "symbol": "XLY"
            },
            {
                "key": "consumer_staples",
                "class": "sector",
                "label": "Consumer Staples",
                "symbol": "XLP"
            },
            {
                "key": "industrials",
                "class": "sector",
                "label": "Industrials",
                "symbol": "XLI"
            },
            {
                "key": "materials",
                "class": "sector",
                "label": "Materials",
                "symbol": "XLB"
            },
            {
                "key": "utilities",
                "class": "sector",
                "label": "Utilities",
                "symbol": "XLU"
            },
            {
                "key": "real_estate",
                "class": "sector",
                "label": "Real Estate",
                "symbol": "XLRE"
            },
            {
                "key": "communication",
                "class": "sector",
                "label": "Communication",
                "symbol": "XLC"
            },
            {
                "key": "gold",
                "class": "commodities",
                "label": "Gold",
                "symbol": "GLD"
            },
      
…