/v1/region
Regional board ranked by day change
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/indices-api/v1/region" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/indices-api/v1/region", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/indices-api/v1/region");
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/indices-api/v1/region",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"count": 7,
"region": "europe",
"indices": [
{
"name": "AEX",
"as_of": "2026-06-08T16:05:02.000Z",
"index": "aex",
"price": 1044.99,
"change": 3.9,
"region": "europe",
"symbol": "^AEX",
"country": "NL",
"day_low": 0,
"currency": "EUR",
"day_high": 0,
"change_pct": 0.37,
"week52_low": 0,
"week52_high": 1056.8,
"previous_close": 1041.09
},
{
"name": "FTSE 100",
"as_of": "2026-06-08T15:35:29.000Z",
"index": "ftse100",
"price": 10373.2,
"change": 5.2,
"region": "europe",
"symbol": "^FTSE",
"country": "GB",
"day_low": 10319.17,
"currency": "GBP",
"day_high": 10409.33,
"change_pct": 0.05,
"week52_low": 8707.7,
"week52_high": 10934.9,
"previous_close": 10368
},
{
"name": "Euro Stoxx 50",
"as_of": "2026-06-08T16:00:00.000Z",
"index": "eurostoxx50",
"price": 6062.29,
"change": 0.22,
"region": "europe",
"symbol": "^STOXX50E",
"country": "EU",
"day_low": 0,
"currency": "EUR",
"day_high": 0,
"change_pct": 0,
"week52_low": 0,
"week52_high": 6199.78,
"previous_close": 6062.07
},
{
"name": "CAC 40",
"as_of": "2026-06-08T16:05:02.000Z",
"index": "cac40",
"price": 8199.29,
"change": -18.95,
"region": "europe",
"symbol": "^FCHI",
"country": "FR",
"day_low": 0,
"currency": "EUR",
"day_high": 0,
"change_pct": -0.23,
"week52_low": 0,
"week52_high": 8642.23,
"previous_close": 8218.24
},
{
"name": "Swiss Market Index",
"as_of": "2026-06-08T15:31:44.000Z",
"index": "smi",
"price": 13320.99,
"change": -67.21,
"region": "europe",
"symbol": "^SSMI",
"country": "CH",
"day_low": 13265.5,
"currency": "CHF",
"day_high": 13401.53,
"change_pct": -0.5,
"week52_low": 11612,
"week52_high": 14063.53,
"previous_close": 13388.2
},
{
…