GET
For Sale Properties
https://www.microburbs.com.au/report_generator/api/suburb/properties
Retrieves detailed information about properties currently listed for sale within a specified suburb, including property attributes, location details, and listing information.
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 |
| property_type | text | Optional | Type of property (house, unit, all). Default is 'house' |
Response Schema
| Field | Type | Description |
|---|---|---|
| results | array | Array of property listings |
| results[].address | object | Detailed address information |
| results[].address.sa1 | string | Statistical Area Level 1 identifier |
| results[].address.sal | string | Suburb and Locality name |
| results[].address.state | string | State abbreviation (e.g., NSW) |
| results[].address.street | string | Street address |
| results[].area_level | string | Level of geographical detail (e.g., 'address') |
| results[].area_name | string | Full formatted address |
| results[].attributes | object | Property attributes and features |
| results[].attributes.bathrooms | number | Number of bathrooms |
| results[].attributes.bedrooms | number | Number of bedrooms |
| results[].attributes.building_size | string | Size of the building (may be null) |
| results[].attributes.description | string | Detailed property description |
| results[].attributes.garage_spaces | number | Number of garage spaces |
| results[].attributes.land_size | string | Size of the land |
| results[].coordinates | object | Geographical coordinates |
| results[].coordinates.latitude | number | Latitude coordinate |
| results[].coordinates.longitude | number | Longitude coordinate |
| results[].gnaf_pid | string | G-NAF Persistent Identifier (unique address ID) |
| results[].listing_date | string | Date when the property was listed for sale |
| results[].price | number | Listed price in dollars |
| results[].property_type | string | Type of property (e.g., 'house', 'unit') |
Request Examples
cURL
Python
JavaScript
curl -X GET "https://www.microburbs.com.au/report_generator/api/suburb/properties?suburb=Belmont%20North" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"
Response Example
Response
{
"results": [
{
"address": {
"sa1": "11101120624",
"sal": "Belmont North",
"state": "NSW",
"street": "15 Rengor Close"
},
"area_level": "address",
"area_name": "15 Rengor Close, Belmont North, NSW",
"attributes": {
"bathrooms": 2,
"bedrooms": 4,
"building_size": null,
"description": "This beautifully designed four-bedroom, two-bathroom Hamptons-inspired home offers a perfect balance of style, comfort, and practicality. With high-end finishes and a well-thought-out floor plan, it's ideal for families or anyone looking for a modern, low-maintenance home in a sought-after location.",
"garage_spaces": 3,
"land_size": "507 m²"
},
"coordinates": {
"latitude": -33.01064264,
"longitude": 151.67045462
},
"gnaf_pid": "GANSW717662275",
"listing_date": "Fri, 21 Feb 2025 00:00:00 GMT",
"price": 1335000,
"property_type": "house"
}
]
}
