Μετάβαση στο περιεχόμενο
GET /v1/series

Any StatFin table as a time-series

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/finland-stats-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "path": "khi/15b5.px",
        "title": "Consumer Price Index (2025=100) by Month, Commodity and Information",
        "series": [
            {
                "value": 102.14,
                "period": "2026M05"
            },
            {
                "value": 101.68,
                "period": "2026M04"
            },
            {
                "value": 101.56,
                "period": "2026M03"
            },
            {
                "value": 100.83,
                "period": "2026M02"
            },
            {
                "value": 99.78,
                "period": "2026M01"
            },
            {
                "value": 99.93,
                "period": "2025M12"
            },
            {
                "value": 99.71,
                "period": "2025M11"
            },
            {
                "value": 99.95,
                "period": "2025M10"
            },
            {
                "value": 100.11,
                "period": "2025M09"
            },
            {
                "value": 99.77,
                "period": "2025M08"
            },
            {
                "value": 100.01,
                "period": "2025M07"
            },
            {
                "value": 99.82,
                "period": "2025M06"
            }
        ],
        "constrained": {
            "contentscode": {
                "pos": 0,
                "code": "ip_khi",
                "label": "Point figure, CPI"
            },
            "coicop_46_20231201": {
                "pos": 0,
                "code": "SSS",
                "label": "0 Total"
            }
        },
        "time_dimension": "timeperiod_m"
    },
    "meta": {
        "timestamp": "2026-06-15T11:14:41.130Z",
        "request_id": "8795812b-e12c-4cea-beec-da6b8bde1218"
    },
    "status": "ok",
    "message": "Series retrieved successfully",
    "success": true
}