/v1/table
Table metadata (variables and value codes)
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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",
"
…