/v1/meta
Service metadata
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/ssb-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/ssb-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/ssb-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/ssb-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"name": "Statistics Norway (SSB) API",
"note": "For /v1/series, choose selections so only the time dimension varies (one value per non-time dimension) to get a clean one-value-per-period series.",
"source": "Statistics Norway PxWeb API (data.ssb.no)",
"country": "Norway",
"endpoints": [
{
"path": "/v1/cpi",
"description": "Latest headline Consumer Price Index (2015=100)"
},
{
"path": "/v1/series",
"description": "Latest observations for any table (?table=03013&select=Konsumgrp:TOTAL;ContentsCode:KpiIndMnd&periods=12)"
},
{
"path": "/v1/meta",
"description": "This metadata document"
}
],
"disclaimer": "Unofficial proxy of the public Statistics Norway PxWeb API. Not affiliated with SSB. Data only; refer to SSB for authoritative figures.",
"description": "A gateway to the official Statistics Norway (SSB) PxWeb data service. Read the latest headline Consumer Price Index, and fetch the latest time-series observations for any SSB statistics table by its table id and dimension selections. Values always resolve to the latest published period."
},
"meta": {
"timestamp": "2026-06-15T11:14:53.554Z",
"request_id": "6f03e969-ab28-4101-9e6d-39dbc16b0a66"
},
"status": "ok",
"message": "Meta",
"success": true
}