/v1/meta
Service metadata
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/slovenia-stats-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/slovenia-stats-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/slovenia-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/slovenia-stats-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "table takes a SURS matrix id, e.g. 0400608S (consumer prices).",
"source": "Statistical Office of the Republic of Slovenia (SURS)",
"upstream": "https://pxweb.stat.si/SiStatData/api/v1/en/Data",
"cpi_table": "0400608S.px",
"endpoints": [
"/v1/cpi",
"/v1/series",
"/v1/table",
"/v1/catalog",
"/v1/meta"
],
"description": "Keyless gateway over the SURS SiStat PxWeb API. /v1/cpi gives the latest Slovenian consumer price index and inflation (index + year-on-year + monthly change); /v1/series pulls any matrix as a clean time-series; /v1/table inspects a matrix's variables; /v1/catalog searches the 4,700+ matrix catalogue.",
"documentation": "https://api.oanor.com/slovenia-stats-api"
},
"meta": {
"timestamp": "2026-06-15T20:41:16.570Z",
"request_id": "07531152-36fc-41f1-87b8-cf990a33ad48"
},
"status": "ok",
"message": "Meta",
"success": true
}