/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/croatia-stats-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/croatia-stats-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/croatia-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/croatia-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": "path is the slash-separated PxWeb path (segments auto URL-encoded); browse with /v1/catalog starting from a database like 'Cijene'.",
"source": "Croatian Bureau of Statistics (Državni zavod za statistiku, DZS)",
"upstream": "https://web.dzs.hr/PXWeb/api/v1/en",
"cpi_table": "Cijene/.../ME_PS09.px",
"endpoints": [
"/v1/cpi",
"/v1/series",
"/v1/table",
"/v1/catalog",
"/v1/meta"
],
"description": "Keyless gateway over the Croatian Bureau of Statistics PxWeb API. /v1/cpi gives the latest Croatian consumer price index and inflation (index + annual + monthly rate); /v1/series pulls any table as a clean time-series; /v1/table inspects a table's variables; /v1/catalog browses the database tree.",
"documentation": "https://api.oanor.com/croatia-stats-api"
},
"meta": {
"timestamp": "2026-06-15T20:41:12.972Z",
"request_id": "f1fba812-1fa4-4cea-8c01-4f0a57517875"
},
"status": "ok",
"message": "Meta",
"success": true
}