/v1/index
Helsinki index family (OMXH25, OMXHPI)
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/finland-stock-api/v1/index" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/finland-stock-api/v1/index", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/finland-stock-api/v1/index");
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/finland-stock-api/v1/index",
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": 1,
"market": "OMXHEX",
"indices": [
{
"low": 6278.2953,
"high": 6350.9807,
"name": "OMX Helsinki 25 Index",
"open": 6347.49,
"index": "OMXH25",
"value": 6339.0473,
"change_abs": 95.4301,
"change_pct": 1.5284
}
]
},
"meta": {
"timestamp": "2026-06-15T02:10:07.880Z",
"request_id": "6d4e1d9c-208b-4095-8d1f-41b50e94aebe"
},
"status": "ok",
"message": "Index retrieved successfully",
"success": true
}