/v1/series
Any StatFin table as a time-series
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
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",
"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
}