Zum Inhalt springen
GET /v1/month

Every index ranked by historical average return in a calendar month

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "note": "Every index ranked by its historical average return in December over ~10 years, seasonally strongest first.",
        "month": "December",
        "source": "Yahoo Finance",
        "indices": [
            {
                "name": "Hang Seng (Hong Kong)",
                "index": "hang_seng",
                "years": 10,
                "region": "asia",
                "win_rate_pct": 80,
                "avg_return_pct": 3.21
            },
            {
                "name": "Euro Stoxx 50",
                "index": "euro_stoxx50",
                "years": 10,
                "region": "europe",
                "win_rate_pct": 60,
                "avg_return_pct": 2.2
            },
            {
                "name": "DAX (Germany)",
                "index": "dax",
                "years": 10,
                "region": "europe",
                "win_rate_pct": 70,
                "avg_return_pct": 2.06
            },
            {
                "name": "FTSE 100 (UK)",
                "index": "ftse100",
                "years": 10,
                "region": "europe",
                "win_rate_pct": 70,
                "avg_return_pct": 1.99
            },
            {
                "name": "CAC 40 (France)",
                "index": "cac40",
                "years": 10,
                "region": "europe",
                "win_rate_pct": 50,
                "avg_return_pct": 1.7
            },
            {
                "name": "Nikkei 225 (Japan)",
                "index": "nikkei225",
                "years": 10,
                "region": "asia",
                "win_rate_pct": 60,
                "avg_return_pct": 1.58
            },
            {
                "name": "India (Nifty/MSCI)",
                "index": "india",
                "years": 10,
                "region": "asia",
                "win_rate_pct": 40,
                "avg_return_pct": 0.73
            },
            {
                "name": "Emerging Markets",
                "index": "emerging_markets",
                "years": 10,
                "region": "global",
                "win_rate_pct": 60,
                "avg_return_pct": 0.24
            },
            {
                "name": "Dow Jones",
                "index": "dow",
                "years": 10,
                "region": "us",
                "win_rate_pct": 70,
                "avg_return_pct": 0.19
            },
            {
                "name": "S&P 500",
                "index": "sp500",
                "years": 10,
                "region": "us",
                "win_rate_pct": 60,
                "avg_return_pct": -0.23
            },
            {
                "name": "S&P MidCap 400",
                "index": "sp_midcap",
                "years": 10,
                "region": "us",
                "win_rate_pct": 50,
                "avg_return_pct": -0.23
            },
            {
                "name": "Nasdaq 100",
            
…