ABS . Quarterly

ABS Residential Property Prices as a JSON REST API

Quarterly Residential Property Price Index (RPPI) as JSON, for the eight capital cities and weighted average. Year-on-year and quarter-on-quarter changes. Sourced from ABS 6432.0. The headline house-price growth without parsing the release.

Endpoint

GEThttps://api.ausdata.io/v1/data/abs/RPPI

Sample request

curl -H "Authorization: Bearer YOUR_API_KEY" \
  "https://api.ausdata.io/v1/data/abs/RPPI?city=Sydney&limit=8"

Sample response

JSON
{
  "data": [
    {
      "period": "2025-Q1",
      "city": "Sydney",
      "index": 218.4,
      "qoq_pct": 0.8,
      "yoy_pct": 6.2
    }
  ],
  "meta": {
    "endpoint": "/v1/data/abs/RPPI",
    "source": {
      "name": "ABS",
      "url": "https://www.abs.gov.au/statistics/economy/price-indexes-and-inflation/residential-property-price-indexes-eight-capital-cities",
      "attribution": "(c) ABS, CC-BY 4.0"
    },
    "retrieved_at": "<ISO timestamp>"
  }
}

Response fields

FieldTypeDescription
periodstringReference quarter
citystringCapital city or weighted average
indexnumberRPPI index level
qoq_pctnumberQuarter-on-quarter percent change
yoy_pctnumberYear-on-year percent change

Frequently asked questions

How do I query the Residential Property Prices dataset via API?
Send a GET request to https://api.ausdata.io/v1/data/abs/RPPI with an Authorization: Bearer <your-key> header. The response is JSON with a data array and a meta block containing the source and retrieval timestamp. Get a free key at ausdata.io with 500 calls per month.
How often is the Residential Property Prices data updated?
The Residential Property Prices dataset is refreshed quarterly from Australian Bureau of Statistics (ABS). The meta.retrieved_at field on every response tells you exactly when the underlying data was last pulled.
Is there a free tier for the ABS Residential Property Prices API?
Yes. ausdata.io offers a free tier of 500 calls per month across every endpoint, including Residential Property Prices. No credit card required. Paid plans start at $29 AUD per month for 10,000 calls.
What format does the Residential Property Prices API return?
JSON, with a consistent envelope: a data field carrying the rows or object, and a meta field with the source agency, source URL, attribution string, and retrieved_at timestamp. UTF-8, ISO 8601 dates, CC-BY attribution included on every response.

Start querying ABS Residential Property Prices

500 free calls per month. No credit card.

Get a free key