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
Bathroom count
GET
/v1/properties/{gnaf_id}/basics/bath-count5¢ per callBathroom 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
BathCountfields returned to you
bath_countintegeralways returnedBathrooms, as advertised when the property was last on the market. Whole number — half-bathrooms and powder rooms are not represented. Null means unknown, not zero.
GET
/v1/properties/{gnaf_id}/basics/bath-countcURL
curl --request GET \
--url 'https://api.microburbs.com.au/v1/properties/GANSW704074813/basics/bath-count' \
--header 'Authorization: Bearer test'Example Responses
{
"data": {
"bath_count": 2
}
}Successful Response200
application/json
