Property - Surroundings
Surrounding tenure mix (200 m)
GET
/v1/properties/{gnaf_id}/surroundings/tenure15¢ per callABS Census 2021 tenure shares for each mesh block around the subject.
Price: 15¢ per call.
Authorization
Request
The only values you send. Fields under Responses below are what comes back — you never pass those.
Path parameters
gnaf_idstringrequiredQuery parameters
None — this endpoint accepts no query parameters. Call the path above with your bearer token and nothing else.
Responses
Successful Response
application/json
SurroundingTenurefields returned to you
gnaf_pidstringalways returnedThe subject property's GNAF PID.
radius_mintegeralways returnedRadius of the search box around the subject, metres.
as_ofstringalways returnedCensus anchor date (YYYY-MM-DD).
mbsarray of MbTenurealways returnedPer-mesh-block tenure shares, sorted by property count desc.
GET
/v1/properties/{gnaf_id}/surroundings/tenurecURL
curl --request GET \
--url 'https://api.microburbs.com.au/v1/properties/GANSW704074813/surroundings/tenure' \
--header 'Authorization: Bearer test'Example Responses
{
"data": {
"as_of": "2021-08-10",
"gnaf_pid": "GANSW704360755",
"mbs": [
{
"mb": "10843090000",
"mortgaged_pct": 39.9,
"owned_outright_pct": 35.4,
"property_count": 39,
"public_housing_pct": 0,
"rented_pct": 15.2
},
{
"mb": "10842992000",
"mortgaged_pct": 45.9,
"owned_outright_pct": 36.3,
"property_count": 21,
"public_housing_pct": 0.6,
"rented_pct": 6.6
}
],
"radius_m": 200
}
}Successful Response200
application/json
