Ir al contenido
GET /v1/meta

Service metadata

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/ssb-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
}