/v1/month
Every index ranked by historical average return in a calendar month
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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",
…