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

Service metadata

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

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

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

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

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

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

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

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

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

{
    "data": {
        "name": "Statistics Sweden (SCB) 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 Sweden PxWeb API (api.scb.se)",
        "country": "Sweden",
        "endpoints": [
            {
                "path": "/v1/cpi",
                "description": "Latest headline Consumer Price Index (1980=100)"
            },
            {
                "path": "/v1/series",
                "description": "Latest observations for any table (?path=PR/PR0101/PR0101A/KPItotM&select=ContentsCode:000004VU&periods=12)"
            },
            {
                "path": "/v1/meta",
                "description": "This metadata document"
            }
        ],
        "disclaimer": "Unofficial proxy of the public Statistics Sweden PxWeb API. Not affiliated with SCB. Data only; refer to SCB for authoritative figures.",
        "description": "A gateway to the official Statistics Sweden (SCB) PxWeb data service. Read the latest headline Consumer Price Index, and fetch the latest time-series observations for any SCB statistics table by its table path and dimension selections. Values always resolve to the latest published period."
    },
    "meta": {
        "timestamp": "2026-06-15T11:14:50.357Z",
        "request_id": "94863fcd-4329-4833-94f1-e20ec14e4659"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}