GET
Market Insights by Street
https://www.microburbs.com.au/report_generator/api/suburb/streets
Retrieves detailed property market information for streets within a specified suburb. Includes an aggregate 'Whole of suburb' entry along with individual street data.
Important: The suburb parameter must use the official naming convention.
You can retrieve the official name for a suburb from the List Suburbs API Endpoint.
You can retrieve the official name for a suburb from the List Suburbs API Endpoint.
Click to see documentation
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| suburb | text | Required | The name of the suburb |
| geojson | boolean | Optional | Set to 'true' to include geometric shape data of streets (default: false) |
| property_type | text | Optional | Type of property (house, unit, all). Default is 'house' |
Response Schema
| Field | Type | Description |
|---|---|---|
| results | array | Array containing street market data |
| results[][].area_level | string | Level of geographical detail ('suburb' for whole suburb, 'street' for individual streets) |
| results[][].area_name | string | Name of the street or 'Whole of [suburb]' for suburb-level data |
| results[][].growth | number | Price growth factor (e.g., 1.058 means 5.8% growth) |
| results[][].properties | number | Number of properties on the street or in the suburb |
| results[][].property_type | string | Type of property (e.g., 'house', 'unit') |
| results[][].renters_percentage | number | Percentage of properties occupied by renters as decimal (null if unavailable) |
| results[][].street_type | string | Classification of street (e.g., 'Quiet Residential', 'Major Road') |
| results[][].turnover_rate | object | Information about property sales turnover |
| results[][].turnover_rate.comment | string | Descriptive assessment of turnover rate (e.g., 'Average Turnover') |
| results[][].turnover_rate.value | number | Numerical turnover rate value |
| results[][].turnover_rate_rent | object | Information about rental property turnover |
| results[][].turnover_rate_rent.comment | string | Descriptive assessment of rental turnover rate |
| results[][].turnover_rate_rent.value | number | Numerical rental turnover rate value |
| results[][].value | number | Median property value in dollars |
| results[][].value_rent | number | Median weekly rent in dollars |
| results[][].geometry | object | GeoJSON geometry data of the street (only included when geojson=true) |
Request Examples
cURL
Python
JavaScript
curl -X GET "https://www.microburbs.com.au/report_generator/api/suburb/streets?suburb=Belmont%20North" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"
Response Example
Response
{
"results": [
[
{
"area_level": "suburb",
"area_name": "Whole of Belmont North",
"growth": 0.92,
"properties": 1373,
"property_type": "house",
"renters_percentage": null,
"street_type": null,
"turnover_rate": {
"comment": "Average Turnover",
"value": 12.5
},
"turnover_rate_rent": {
"comment": "Quite Tightly Held",
"value": 10.2
},
"value": 929000,
"value_rent": 705
},
{
"area_level": "street",
"area_name": "Wommara Ave",
"growth": 1.058,
"properties": 146,
"property_type": "house",
"renters_percentage": 0.2,
"street_type": "Quiet Residential",
"turnover_rate": {
"comment": "Average Turnover",
"value": 11.7
},
"turnover_rate_rent": {
"comment": "Quite Tightly Held",
"value": 5.9
},
"value": 756850,
"value_rent": 702
},
{
"area_level": "street",
"area_name": "Pacific Hwy",
"growth": 1.085,
"properties": 110,
"property_type": "house",
"renters_percentage": 0.3,
"street_type": "Major Road",
"turnover_rate": {
"comment": "High Turnover",
"value": 11
},
"turnover_rate_rent": {
"comment": "Quite Tightly Held",
"value": 6
},
"value": 808100,
"value_rent": 650
}
]
]
}
