/v1/meta
Service metadata
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/abs-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/abs-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/abs-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/abs-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"name": "Australian Bureau of Statistics API",
"source": "Australian Bureau of Statistics Data API (data.api.abs.gov.au)",
"country": "Australia",
"endpoints": [
{
"path": "/v1/cpi",
"description": "Latest headline Consumer Price Index"
},
{
"path": "/v1/dataflows",
"description": "List/search ABS dataflows (?search=cpi&limit=100)"
},
{
"path": "/v1/data",
"description": "Latest observations for any series (?dataflow=CPI&key=1.10001.10.50.Q&periods=8)"
},
{
"path": "/v1/meta",
"description": "This metadata document"
}
],
"disclaimer": "Unofficial proxy of the public ABS Data API. Not affiliated with the Australian Bureau of Statistics. Data only; refer to the ABS for authoritative figures.",
"description": "A gateway to the official Australian Bureau of Statistics (ABS) SDMX data service. Read the latest headline CPI, browse and search the 1,200+ ABS statistical dataflows, and fetch the latest observations for any ABS series by its dataflow id and SDMX key. Values always resolve to the latest published period."
},
"meta": {
"timestamp": "2026-06-15T11:14:57.358Z",
"request_id": "d3ef290c-9c68-4519-aa59-921120937ee3"
},
"status": "ok",
"message": "Meta",
"success": true
}