Microburbs
Property - Basics

All basics — bundle

GET/v1/properties/{gnaf_id}/basics/all23¢ per call

Price: 23¢ per call.

Authorization

Request

The only values you send. Fields under Responses below are what comes back — you never pass those.

Path parameters

gnaf_idstringrequired

Query parameters

None — this endpoint accepts no query parameters. Call the path above with your bearer token and nothing else.

Responses

Successful Response

application/json
BasicsAllfields returned to you
bed_countintegermay be null
bath_countintegermay be null
parking_countintegermay be null
dwelling_typestringmay be null
land_area_sqmnumbermay be null
GET/v1/properties/{gnaf_id}/basics/all
cURL
curl --request GET \
  --url 'https://api.microburbs.com.au/v1/properties/GANSW704074813/basics/all' \
  --header 'Authorization: Bearer test'
Example Responses
{
  "data": {
    "bath_count": 2,
    "bed_count": 4,
    "dwelling_type": "house",
    "land_area_sqm": 814,
    "parking_count": 5
  }
}
Successful Response200
application/json