/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.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}