/v1/indices
Supported indices and regions
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/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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}