Aller au contenu
GET /v1/meta

Service metadata

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/finland-stats-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

curl "https://api.oanor.com/finland-stats-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/finland-stats-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/finland-stats-api/v1/meta");
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/meta",
    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": {
        "note": "For /v1/series and /v1/table, path is relative to StatFin, e.g. khi/15b5.px",
        "source": "Statistics Finland (Tilastokeskus / StatFin)",
        "upstream": "https://pxdata.stat.fi/PxWeb/api/v1/en/StatFin",
        "cpi_table": "khi/15b5.px",
        "endpoints": [
            "/v1/cpi",
            "/v1/series",
            "/v1/table",
            "/v1/databases",
            "/v1/meta"
        ],
        "description": "Keyless gateway over Statistics Finland's StatFin PxWeb API. /v1/cpi gives the latest Finnish consumer price index and annual inflation; /v1/series pulls any StatFin table as a clean time-series; /v1/table and /v1/databases discover the catalog.",
        "documentation": "https://api.oanor.com/finland-stats-api"
    },
    "meta": {
        "timestamp": "2026-06-15T11:14:41.596Z",
        "request_id": "2c06dba0-97ea-43a6-81f4-42b6ea023f44"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}