/v1/index
Helsinki index family (OMXH25, OMXHPI)
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"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
}