Naar de inhoud
GET /v1/index

Helsinki index family (OMXH25, OMXHPI)

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/finland-stock-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}