Naar de inhoud
GET /v1/indices

Supported indices and regions

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/indexseasonality-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "note": "Supported stock indices. Pass key/alias as index= to /v1/seasonality, or month= (1-12 or name) to /v1/month.",
        "count": 14,
        "source": "Yahoo Finance",
        "indices": [
            {
                "key": "sp500",
                "name": "S&P 500",
                "region": "us"
            },
            {
                "key": "nasdaq100",
                "name": "Nasdaq 100",
                "region": "us"
            },
            {
                "key": "dow",
                "name": "Dow Jones",
                "region": "us"
            },
            {
                "key": "russell2000",
                "name": "Russell 2000",
                "region": "us"
            },
            {
                "key": "sp_midcap",
                "name": "S&P MidCap 400",
                "region": "us"
            },
            {
                "key": "dax",
                "name": "DAX (Germany)",
                "region": "europe"
            },
            {
                "key": "ftse100",
                "name": "FTSE 100 (UK)",
                "region": "europe"
            },
            {
                "key": "cac40",
                "name": "CAC 40 (France)",
                "region": "europe"
            },
            {
                "key": "euro_stoxx50",
                "name": "Euro Stoxx 50",
                "region": "europe"
            },
            {
                "key": "nikkei225",
                "name": "Nikkei 225 (Japan)",
                "region": "asia"
            },
            {
                "key": "hang_seng",
                "name": "Hang Seng (Hong Kong)",
                "region": "asia"
            },
            {
                "key": "emerging_markets",
                "name": "Emerging Markets",
                "region": "global"
            },
            {
                "key": "india",
                "name": "India (Nifty/MSCI)",
                "region": "asia"
            },
            {
                "key": "brazil",
                "name": "Brazil (Bovespa/MSCI)",
                "region": "americas"
            }
        ],
        "regions": [
            "us",
            "europe",
            "asia",
            "americas",
            "global"
        ]
    },
    "meta": {
        "timestamp": "2026-06-12T10:35:15.729Z",
        "request_id": "2360ee1c-732a-403a-b32e-b0b6d5822ad4"
    },
    "status": "ok",
    "message": "Indices retrieved successfully",
    "success": true
}