Ir al contenido
GET /v1/table

Table metadata (variables and value codes)

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/table" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/finland-stats-api/v1/table", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/finland-stats-api/v1/table");
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/table",
    headers={"x-oanor-key": "oanor_test_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "data": {
        "path": "khi/15b5.px",
        "title": "Consumer Price Index (2025=100) by Month, Commodity and Information",
        "variables": [
            {
                "code": "timeperiod_m",
                "text": "Month",
                "time": true,
                "n_values": 377,
                "sample_values": [
                    {
                        "code": "1995M01",
                        "text": "1995M01"
                    },
                    {
                        "code": "1995M02",
                        "text": "1995M02"
                    },
                    {
                        "code": "1995M03",
                        "text": "1995M03"
                    },
                    {
                        "code": "1995M04",
                        "text": "1995M04"
                    },
                    {
                        "code": "1995M05",
                        "text": "1995M05"
                    }
                ]
            },
            {
                "code": "coicop_46_20231201",
                "text": "Commodity",
                "time": false,
                "n_values": 390,
                "sample_values": [
                    {
                        "code": "SSS",
                        "text": "0 Total"
                    },
                    {
                        "code": "01",
                        "text": "01 FOOD AND NON-ALCOHOLIC BEVERAGES"
                    },
                    {
                        "code": "011",
                        "text": "01.1 Food"
                    },
                    {
                        "code": "0111",
                        "text": "01.1.1 Cereals and cereal products (ND)"
                    },
                    {
                        "code": "01111",
                        "text": "01.1.1.1 Cereals (ND)"
                    }
                ]
            },
            {
                "code": "contentscode",
                "text": "Information",
                "time": false,
                "n_values": 5,
                "sample_values": [
                    {
                        "code": "ip_khi",
                        "text": "Point figure, CPI"
                    },
                    {
                        "code": "vm_khi",
                        "text": "Annual change (%), CPI"
                    },
                    {
                        "code": "km_khi",
                        "text": "Monthly change (%), CPI"
                    },
                    {
                        "code": "vv_khi",
                        "text": "Annual impact (%-units), CPI"
                    },
                    {
                        "code": "kv_khi",
                        "text": "Monthly impact (%-units), CPI"
                    }
                ]
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-15T11:14:41.500Z",
        "
…