Ir al contenido
GET /v1/meta

Spec

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/aland-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/aland-stats-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/aland-stats-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/aland-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/aland-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": {
        "api": "Statistics Åland (ÅSUB) API",
        "notes": "Live data from ÅSUB PxWeb (json-stat2). Index 2025=100; annual/monthly change and annual impact are published directly.",
        "region": "Åland Islands (autonomous region of Finland, euro area)",
        "source": "Statistics and Research Åland — ÅSUB PxWeb API (pxweb.asub.ax), table KO010",
        "endpoints": [
            "/v1/cpi",
            "/v1/cpi/series",
            "/v1/cpi/divisions",
            "/v1/cpi/drivers",
            "/v1/meta"
        ],
        "documentation": "https://api.oanor.com/aland-stats-api",
        "primary_indicator": "Consumer Price Index (2025=100), overall + 13 COICOP divisions, with annual/monthly change and annual impact"
    },
    "meta": {
        "timestamp": "2026-06-15T20:40:29.384Z",
        "request_id": "965287c8-0f07-466e-83a4-2c9330fead28"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}