Live sandbox. Send any request below against one sample suburb and property — no signup needed. For full coverage, create an API key.
Microburbs Property Data API
Property - Basics
Parking-space count
GET
/v1/properties/{gnaf_id}/basics/parking-count5¢ per callParking-space count from the latest matching listing.
Price: 5¢ 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
ParkingCountfields returned to you
parking_countintegeralways returnedCovered car spaces (garage/carport) as advertised. It does not count open driveway or street parking, so a house with a wide driveway and no garage can legitimately read 0 or null. Null means unknown.
GET
/v1/properties/{gnaf_id}/basics/parking-countcURL
curl --request GET \
--url 'https://api.microburbs.com.au/v1/properties/GANSW704074813/basics/parking-count' \
--header 'Authorization: Bearer test'Example Responses
{
"data": {
"parking_count": 5
}
}Successful Response200
application/json
