/v1/meta
Service metadata
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/finland-stats-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/finland-stats-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/finland-stats-api/v1/meta");
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-stats-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"note": "For /v1/series and /v1/table, path is relative to StatFin, e.g. khi/15b5.px",
"source": "Statistics Finland (Tilastokeskus / StatFin)",
"upstream": "https://pxdata.stat.fi/PxWeb/api/v1/en/StatFin",
"cpi_table": "khi/15b5.px",
"endpoints": [
"/v1/cpi",
"/v1/series",
"/v1/table",
"/v1/databases",
"/v1/meta"
],
"description": "Keyless gateway over Statistics Finland's StatFin PxWeb API. /v1/cpi gives the latest Finnish consumer price index and annual inflation; /v1/series pulls any StatFin table as a clean time-series; /v1/table and /v1/databases discover the catalog.",
"documentation": "https://api.oanor.com/finland-stats-api"
},
"meta": {
"timestamp": "2026-06-15T11:14:41.596Z",
"request_id": "2c06dba0-97ea-43a6-81f4-42b6ea023f44"
},
"status": "ok",
"message": "Meta",
"success": true
}