Microburbs
Suburb - Demographics

Income per microburb

GET/v1/suburbs/{suburb_name}/demographics/income-map10¢ per call

Median weekly household income for every microburb in the suburb, plus the suburb median, national percentile and highest/lowest pockets.

Price: 10¢ per call.

Authorization

Request

The only values you send. Fields under Responses below are what comes back — you never pass those.

Path parameters

suburb_namestringrequired

Query parameters

None — this endpoint accepts no query parameters. Call the path above with your bearer token and nothing else.

Responses

Successful Response

application/json
SuburbIncomeMapfields returned to you
suburbstringalways returned

Canonical SAL name.

median_weekly_incomeintegermay be null

Suburb median household income ($/week).

national_percentileintegermay be null

National income percentile, clamped 1-99.

n_microburbsintegeralways returned

Microburbs with income data.

microburbsarray of IncomeMbalways returned

Per-microburb incomes.

highestobjectmay be null

Highest/lowest income pocket callout.

lowestobjectmay be null

Highest/lowest income pocket callout.

GET/v1/suburbs/{suburb_name}/demographics/income-map
cURL
curl --request GET \
  --url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/demographics/income-map' \
  --header 'Authorization: Bearer test'
Example Responses
{
  "data": {
    "highest": {
      "street": "Marquis St",
      "weekly_income": 2105
    },
    "lowest": {
      "street": "Kalaroo Rd",
      "weekly_income": 1188
    },
    "median_weekly_income": 1740,
    "microburbs": [
      {
        "mb": "10664530000",
        "street": "Marquis St",
        "weekly_income": 2105
      }
    ],
    "n_microburbs": 71,
    "national_percentile": 55,
    "suburb": "Belmont North"
  }
}
Successful Response200
application/json