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/finland-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/finland-stats-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/finland-stats-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/finland-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/finland-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": "For /v1/series and /v1/table, path is relative to StatFin, e.g. khi/15b5.px",
        "source": "Statistics Finland (Tilastokeskus / StatFin)",
        "upstream": "https://pxdata.stat.fi/PxWeb/api/v1/en/StatFin",
        "cpi_table": "khi/15b5.px",
        "endpoints": [
            "/v1/cpi",
            "/v1/series",
            "/v1/table",
            "/v1/databases",
            "/v1/meta"
        ],
        "description": "Keyless gateway over Statistics Finland's StatFin PxWeb API. /v1/cpi gives the latest Finnish consumer price index and annual inflation; /v1/series pulls any StatFin table as a clean time-series; /v1/table and /v1/databases discover the catalog.",
        "documentation": "https://api.oanor.com/finland-stats-api"
    },
    "meta": {
        "timestamp": "2026-06-15T11:14:41.596Z",
        "request_id": "2c06dba0-97ea-43a6-81f4-42b6ea023f44"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}