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/assetvolatility-api

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "note": "Supported cross-asset instruments. Pass key as asset= to /v1/asset, class=/sort= to /v1/ranking.",
        "count": 18,
        "sorts": [
            "volatility",
            "sharpe",
            "return",
            "drawdown"
        ],
        "assets": [
            {
                "key": "sp500",
                "class": "equities",
                "label": "S&P 500",
                "symbol": "SPY"
            },
            {
                "key": "nasdaq100",
                "class": "equities",
                "label": "Nasdaq 100",
                "symbol": "QQQ"
            },
            {
                "key": "russell2000",
                "class": "equities",
                "label": "Russell 2000",
                "symbol": "IWM"
            },
            {
                "key": "emerging",
                "class": "equities",
                "label": "Emerging Markets",
                "symbol": "EEM"
            },
            {
                "key": "long_treasuries",
                "class": "bonds",
                "label": "Long US Treasuries",
                "symbol": "TLT"
            },
            {
                "key": "ig_credit",
                "class": "bonds",
                "label": "Investment-Grade Credit",
                "symbol": "LQD"
            },
            {
                "key": "high_yield",
                "class": "bonds",
                "label": "High-Yield Credit",
                "symbol": "HYG"
            },
            {
                "key": "gold",
                "class": "commodities",
                "label": "Gold",
                "symbol": "GLD"
            },
            {
                "key": "silver",
                "class": "commodities",
                "label": "Silver",
                "symbol": "SLV"
            },
            {
                "key": "oil",
                "class": "commodities",
                "label": "Crude Oil",
                "symbol": "USO"
            },
            {
                "key": "natural_gas",
                "class": "commodities",
                "label": "Natural Gas",
                "symbol": "UNG"
            },
            {
                "key": "broad_commodities",
                "class": "commodities",
                "label": "Broad Commodities",
                "symbol": "DBC"
            },
            {
                "key": "us_dollar",
                "class": "fx",
                "label": "US Dollar Index",
                "symbol": "UUP"
            },
            {
                "key": "eurusd",
                "class": "fx",
                "label": "EUR/USD",
                "symbol": "EURUSD=X"
            },
            {
                "key": "usdjpy",
                "class": "fx",
                "label": "USD/JPY",
                "symbol": "USDJPY=X"
            },
            {
                "key": "real_estate",
                "class": "real_estat
…