/v1/table
Table metadata (variables and value codes)
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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",
"
…