All datasets

Ireland: residential property price index

Central Statistics Office (Ireland) Residential Property Price Index (base January 2005 = 100) plus 1-, 3- and 12-month percentage changes, national and by region/property type (houses, apartments; Dublin, regions), from January 2005. Rows are statistic x month x property type.

Source: Central Statistics Office (Ireland)20,720 rowsUpdated: 9/22/2026License: CC-BY-4.0
irelandhousingproperty-pricescso

Quality

99.6

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).
property_type_codestringProvider code for Type of Residential Property.
property_type_labelstringProvider's Type of Residential Property label.

Sample rows

dateseries_idseries_labelvalueunitstat_codestat_labeltime_codeproperty_type_codeproperty_type_label
2005-01-01T00:00:00HPM06|HPM06C01|200501|-Residential Property Price Index — National - all residential properties100Base Jan 2005 = 100HPM06C01Residential Property Price Index200501-National - all residential properties
2005-01-01T00:00:00HPM06|HPM06C01|200501|01Residential Property Price Index — National - houses100Base Jan 2005 = 100HPM06C01Residential Property Price Index20050101National - houses
2005-01-01T00:00:00HPM06|HPM06C01|200501|02Residential Property Price Index — National - apartments100Base Jan 2005 = 100HPM06C01Residential Property Price Index20050102National - apartments
2005-01-01T00:00:00HPM06|HPM06C01|200501|03Residential Property Price Index — National excluding Dublin - all residential properties100Base Jan 2005 = 100HPM06C01Residential Property Price Index20050103National excluding Dublin - all residential properties
2005-01-01T00:00:00HPM06|HPM06C01|200501|04Residential Property Price Index — National excluding Dublin - houses100Base Jan 2005 = 100HPM06C01Residential Property Price Index20050104National excluding Dublin - houses

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

Python

import requests

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

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