All datasets

Labour force survey: employment, unemployment and participation, monthly

Norway's Labour Force Survey (AKU): unemployment rate (LFS), unemployment (thousands), employment (thousands) and labour force participation, seasonally adjusted, by sex and age, monthly from January 2006. Source: StatBank table 13760.

Source: Statistics Norway (StatBank)8,568 rowsUpdated: 9/22/2026License: CC-BY-4.0
unemploymentemploymentlabour-forcenorwaylfs

Quality

100

Attribution

Statistics Norway

Schema

ColumnTypeDescription
datetimestampStart of the observation period (SSB StatBank dimension Tid: month for monthly tables, year for annual tables).
series_idstringStable row key: the SSB StatBank dimension codes for this observation, joined by '.'.
series_labelstringHuman-readable label: the SSB StatBank dimension value texts for this observation, joined by ' — '.
sexstringSSB StatBank dimension 'sex'. Provider code values include: 0: Both sexes; 2: Females; 1: Males.
sex_namestringStatistics Norway's value text for the 'sex' dimension code.
agestringSSB StatBank dimension 'age'. Provider code values include: 15-74: 15-74 years; 15-24: 15-24 years; 25-74: 25-74 years.
age_namestringStatistics Norway's value text for the 'age' dimension code.
adjustmentstringSSB StatBank dimension 'type of adjustment'. Provider code values include: T: Trend; 3MGG: Seasonal adjusted, 3-months moving average; S: Seasonally adjusted; IS: Not seasonally adjusted.
adjustment_namestringStatistics Norway's value text for the 'type of adjustment' dimension code.
contentsstringSSB StatBank dimension 'contents'. Provider code values include: Arbeidsstyrken: Labour force (1000 persons); Sysselsatte: Total employment (1000 persons); Ukeverk: Man-weeks worked of 37.5 hours (1000); Arbeidsledige: Unemployment (LFS) (1000 persons); ArbStyrkProsBefolkn: Labour force in per cent of the population; SysselProsBefolkn: Employed persons in per cent of the population.
contents_namestringStatistics Norway's value text for the 'contents' dimension code.
valuefloatMeasured value. Definition and unit depend on the series — see the 'contents' / 'contents_name' dimension, whose value texts are Statistics Norway's own (e.g. 'Consumer Price Index', '12-month rate (per cent)', 'Unemployment rate (LFS)', 'Persons').

Sample rows

dateseries_idseries_labelsexsex_nameageage_nameadjustmentadjustment_namecontentscontents_namevalue
2009-01-01T00:00:000.15-24.S.ArbStyrkProsBefolknBoth sexes — 15-24 years — Seasonally adjusted — Labour force in per cent of the population0Both sexes15-2415-24 yearsSSeasonally adjustedArbStyrkProsBefolknLabour force in per cent of the population62.4
2009-02-01T00:00:000.15-24.S.ArbStyrkProsBefolknBoth sexes — 15-24 years — Seasonally adjusted — Labour force in per cent of the population0Both sexes15-2415-24 yearsSSeasonally adjustedArbStyrkProsBefolknLabour force in per cent of the population62.7
2009-03-01T00:00:000.15-24.S.ArbStyrkProsBefolknBoth sexes — 15-24 years — Seasonally adjusted — Labour force in per cent of the population0Both sexes15-2415-24 yearsSSeasonally adjustedArbStyrkProsBefolknLabour force in per cent of the population62.6
2009-04-01T00:00:000.15-24.S.ArbStyrkProsBefolknBoth sexes — 15-24 years — Seasonally adjusted — Labour force in per cent of the population0Both sexes15-2415-24 yearsSSeasonally adjustedArbStyrkProsBefolknLabour force in per cent of the population62.4
2009-05-01T00:00:000.15-24.S.ArbStyrkProsBefolknBoth sexes — 15-24 years — Seasonally adjusted — Labour force in per cent of the population0Both sexes15-2415-24 yearsSSeasonally adjustedArbStyrkProsBefolknLabour force in per cent of the population61.7

Download sample data

Download the full sample snapshot for this dataset (sample rows, not the complete dataset).

Use with an LLM

Point any LLM at the metadata endpoint — the documentation above is machine-readable too (JSON-LD + Croissant).

cURL

curl "https://datazimuts.com/v1/datasets/ssb/labour_force_survey" | jq '{title, rows, columns_count, license}'

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/ssb/labour_force_survey").json()
print(ds["title"], ds["rows"], "rows")

# Sample rows for an LLM context window
for row in ds.get("sample_rows", [])[:5]:
    print(row)

API endpoint: https://datazimuts.com/v1/datasets/ssb/labour_force_survey

Tip: fetch /llms.txt for the full machine-readable catalog.