/v1/meta
Service metadata
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}