/v1/meta
Service metadata
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/estonia-stats-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/estonia-stats-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/estonia-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/estonia-stats-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "table takes a Statistics Estonia table code, e.g. IA02 (consumer prices).",
"source": "Statistics Estonia (Statistikaamet)",
"upstream": "https://andmed.stat.ee/api/v1/en/stat",
"cpi_table": "IA02",
"endpoints": [
"/v1/cpi",
"/v1/series",
"/v1/table",
"/v1/catalog",
"/v1/meta"
],
"description": "Keyless gateway over Statistics Estonia's PxWeb API. /v1/cpi gives the latest Estonian consumer price index (1997 = 100) with computed year-on-year inflation; /v1/series pulls any table as a clean time-series; /v1/table inspects a table's variables; /v1/catalog lists/searches the tables.",
"documentation": "https://api.oanor.com/estonia-stats-api"
},
"meta": {
"timestamp": "2026-06-15T20:41:21.415Z",
"request_id": "26f826a6-9238-42e5-b467-df96593be576"
},
"status": "ok",
"message": "Meta",
"success": true
}