Ir al contenido
GET /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.

Encabezados personalizados (opcional)
api.oanor.com/austria-stats-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/austria-stats-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/austria-stats-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/austria-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/austria-stats-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": {
        "note": "dataset takes an OGD identifier, e.g. OGD_vpi15_VPI_2015_1 (consumer prices). C-* columns are dimension codes, F-* columns are figures.",
        "source": "Statistics Austria (Statistik Austria) — Open Government Data",
        "upstream": "https://data.statistik.gv.at",
        "endpoints": [
            "/v1/cpi",
            "/v1/dataset",
            "/v1/data",
            "/v1/meta"
        ],
        "cpi_dataset": "OGD_vpi15_VPI_2015_1",
        "description": "Keyless gateway over the Statistics Austria OGD portal. /v1/cpi gives the latest Austrian consumer price index and inflation (index + annual + monthly change); /v1/dataset returns an OGD dataset's metadata and resources; /v1/data returns a dataset's observations (CSV parsed to JSON); German decimals are normalised.",
        "documentation": "https://api.oanor.com/austria-stats-api"
    },
    "meta": {
        "timestamp": "2026-06-15T20:41:10.540Z",
        "request_id": "fb8891b8-861c-4276-9940-9606260f2e92"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}