Property - Context
Mesh blocks — 1 km buffer stats
GET
/v1/properties/{gnaf_id}/context/mesh-blocks30¢ per callMesh-block polygons within 1 km of the property (GeoJSON), each with avg annual growth, investor counts, modal street and median sold price.
Price: 30¢ 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
MeshBlocksContextfields returned to you
gnaf_idstringalways returnedSubject property GNAF id.
buffer_kmnumberalways returnedBuffer radius (km). Always 1.0.
center_latnumberalways returnedSubject property latitude.
center_lngnumberalways returnedSubject property longitude.
mesh_blocksobjectalways returnedRFC 7946 GeoJSON FeatureCollection of buffer mesh blocks.
GET
/v1/properties/{gnaf_id}/context/mesh-blockscURL
curl --request GET \
--url 'https://api.microburbs.com.au/v1/properties/GANSW704074813/context/mesh-blocks' \
--header 'Authorization: Bearer test'Example Responses
{
"data": {
"buffer_km": 1,
"center_lat": -33.802479,
"center_lng": 151.219715,
"gnaf_id": "GANSW704360755",
"mesh_blocks": {
"features": [
{
"geometry": {
"coordinates": [
[
[
151.2185,
-33.8018
],
[
151.2199,
-33.8018
],
[
151.2199,
-33.8031
],
[
151.2185,
-33.8031
],
[
151.2185,
-33.8018
]
]
],
"type": "Polygon"
},
"properties": {
"mb": "10693650000",
"modal_street": "THE BULWARK",
"avg_annual_growth": 0.061,
"total_properties": 42,
"rental_properties": 9,
"investor_pct": 21.43,
"median_sold_price": 3350000
},
"type": "Feature"
}
],
"type": "FeatureCollection"
}
}
}Successful Response200
application/json
