/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/austria-stats-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/austria-stats-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/austria-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/austria-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": "dataset takes an OGD identifier, e.g. OGD_vpi15_VPI_2015_1 (consumer prices). C-* columns are dimension codes, F-* columns are figures.",
"source": "Statistics Austria (Statistik Austria) — Open Government Data",
"upstream": "https://data.statistik.gv.at",
"endpoints": [
"/v1/cpi",
"/v1/dataset",
"/v1/data",
"/v1/meta"
],
"cpi_dataset": "OGD_vpi15_VPI_2015_1",
"description": "Keyless gateway over the Statistics Austria OGD portal. /v1/cpi gives the latest Austrian consumer price index and inflation (index + annual + monthly change); /v1/dataset returns an OGD dataset's metadata and resources; /v1/data returns a dataset's observations (CSV parsed to JSON); German decimals are normalised.",
"documentation": "https://api.oanor.com/austria-stats-api"
},
"meta": {
"timestamp": "2026-06-15T20:41:10.540Z",
"request_id": "fb8891b8-861c-4276-9940-9606260f2e92"
},
"status": "ok",
"message": "Meta",
"success": true
}