ssbnorway.metadata
mock data$0.001 / callSSB Norway Table Metadata
Get the full metadata for a specific SSB table — dimension codes, valid value codes, and human-readable labels needed to construct a data query. Returns table title, last-updated timestamp, and an array of variables (dimensions) each with its code (e.g. "Region"), readable name, list of valid value codes, and corresponding labels. This is the required second step before querying data: call ssbnorway.data.search to find a table ID, then ssbnorway.data.metadata to learn the dimension codes and valid values, then ssbnorway.data.query to retrieve actual data. Common table IDs: "07459" (population by region/sex/age/year), "09842" (GDP per capita), "05111" (labour force), "03013" (CPI).
Input schema
SSB table ID (numeric string). Obtain from ssbnorway.search results. Common tables: "07459" (population by region/sex/age/year), "09842" (GDP per capita by year), "05111" (labour force status by sex/age/year), "03013" (CPI / consumer price index by year), "08655" (exports/imports by product/country/year). Returns dimension codes and valid values required for ssbnorway.query.
Call via REST
curl -X POST https://unifyapi.pro/api/call/ssbnorway.metadata \
-H "Authorization: Bearer uak_live_..." \
-H "Content-Type: application/json" \
-d '{"table_id":"<table_id>"}'