/v1/meta
Service metadata
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}