All datasets

Ireland: seasonally adjusted monthly unemployment

Central Statistics Office (Ireland) monthly unemployment series: seasonally adjusted number of unemployed persons (thousands) and unemployment rate (%), by age group (15-24, 25-74, 15-74) and sex, from January 1998. Rows are statistic x month x age group x sex.

Source: Central Statistics Office (Ireland)6,192 rowsUpdated: 9/22/2026License: CC-BY-4.0
irelandunemploymentlabour-marketcso

Quality

100

Attribution

Central Statistics Office, Ireland (CSO)

Schema

ColumnTypeDescription
datetimestampFirst day of the observation period (month, quarter, or year) from the provider's time dimension.
series_idstringComposite key: PxStat matrix code | statistic code | time code | breakdown dimension codes.
series_labelstringHuman-readable label from the provider's own dimension labels: statistic, then breakdown values.
valuefloatObservation value in the series unit (see the unit column).
unitstringUnit of the observation, taken from the provider's own CSV export UNIT column for the statistic.
stat_codestringPxStat statistic code within the matrix.
stat_labelstringProvider's statistic name (e.g. 'Residential Property Price Index').
time_codestringProvider's raw time code (YYYYMM, YYYYQ, or YYYY).
age_group_codestringProvider code for Age Group.
age_group_labelstringProvider's Age Group label.
sex_codestringProvider code for Sex.
sex_labelstringProvider's Sex label.

Sample rows

dateseries_idseries_labelvalueunitstat_codestat_labeltime_codeage_group_codeage_group_labelsex_codesex_label
1998-01-01T00:00:00MUM01|MUM01C01|199801|310|-Seasonally Adjusted Monthly Unemployment — 15 - 24 years — Both sexes55ThousandMUM01C01Seasonally Adjusted Monthly Unemployment19980131015 - 24 years-Both sexes
1998-01-01T00:00:00MUM01|MUM01C01|199801|310|1Seasonally Adjusted Monthly Unemployment — 15 - 24 years — Male31.3ThousandMUM01C01Seasonally Adjusted Monthly Unemployment19980131015 - 24 years1Male
1998-01-01T00:00:00MUM01|MUM01C01|199801|310|2Seasonally Adjusted Monthly Unemployment — 15 - 24 years — Female23.7ThousandMUM01C01Seasonally Adjusted Monthly Unemployment19980131015 - 24 years2Female
1998-01-01T00:00:00MUM01|MUM01C01|199801|316|-Seasonally Adjusted Monthly Unemployment — 15 - 74 years — Both sexes151ThousandMUM01C01Seasonally Adjusted Monthly Unemployment19980131615 - 74 years-Both sexes
1998-01-01T00:00:00MUM01|MUM01C01|199801|316|1Seasonally Adjusted Monthly Unemployment — 15 - 74 years — Male86.7ThousandMUM01C01Seasonally Adjusted Monthly Unemployment19980131615 - 74 years1Male

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/cso/cso_monthly_unemployment" | jq '{title, rows, columns_count, license}'

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/cso/cso_monthly_unemployment").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/cso/cso_monthly_unemployment

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