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.
irelandunemploymentlabour-marketcso
Quality
100
Attribution
Central Statistics Office, Ireland (CSO)
Schema
| Column | Type | Description |
|---|---|---|
| date | timestamp | First day of the observation period (month, quarter, or year) from the provider's time dimension. |
| series_id | string | Composite key: PxStat matrix code | statistic code | time code | breakdown dimension codes. |
| series_label | string | Human-readable label from the provider's own dimension labels: statistic, then breakdown values. |
| value | float | Observation value in the series unit (see the unit column). |
| unit | string | Unit of the observation, taken from the provider's own CSV export UNIT column for the statistic. |
| stat_code | string | PxStat statistic code within the matrix. |
| stat_label | string | Provider's statistic name (e.g. 'Residential Property Price Index'). |
| time_code | string | Provider's raw time code (YYYYMM, YYYYQ, or YYYY). |
| age_group_code | string | Provider code for Age Group. |
| age_group_label | string | Provider's Age Group label. |
| sex_code | string | Provider code for Sex. |
| sex_label | string | Provider's Sex label. |
Sample rows
| date | series_id | series_label | value | unit | stat_code | stat_label | time_code | age_group_code | age_group_label | sex_code | sex_label |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 1998-01-01T00:00:00 | MUM01|MUM01C01|199801|310|- | Seasonally Adjusted Monthly Unemployment — 15 - 24 years — Both sexes | 55 | Thousand | MUM01C01 | Seasonally Adjusted Monthly Unemployment | 199801 | 310 | 15 - 24 years | - | Both sexes |
| 1998-01-01T00:00:00 | MUM01|MUM01C01|199801|310|1 | Seasonally Adjusted Monthly Unemployment — 15 - 24 years — Male | 31.3 | Thousand | MUM01C01 | Seasonally Adjusted Monthly Unemployment | 199801 | 310 | 15 - 24 years | 1 | Male |
| 1998-01-01T00:00:00 | MUM01|MUM01C01|199801|310|2 | Seasonally Adjusted Monthly Unemployment — 15 - 24 years — Female | 23.7 | Thousand | MUM01C01 | Seasonally Adjusted Monthly Unemployment | 199801 | 310 | 15 - 24 years | 2 | Female |
| 1998-01-01T00:00:00 | MUM01|MUM01C01|199801|316|- | Seasonally Adjusted Monthly Unemployment — 15 - 74 years — Both sexes | 151 | Thousand | MUM01C01 | Seasonally Adjusted Monthly Unemployment | 199801 | 316 | 15 - 74 years | - | Both sexes |
| 1998-01-01T00:00:00 | MUM01|MUM01C01|199801|316|1 | Seasonally Adjusted Monthly Unemployment — 15 - 74 years — Male | 86.7 | Thousand | MUM01C01 | Seasonally Adjusted Monthly Unemployment | 199801 | 316 | 15 - 74 years | 1 | Male |
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.