Microburbs
Property - Title

Neighbours

GET/v1/properties/{gnaf_id}/neighbours30¢ per call

Adjoining-parcel neighbours, enriched with address + property type + bed/bath/garage from the latest matching listing.

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_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
Neighboursfields returned to you
neighboursarray of Neighbouralways returned

Adjoining cadastral parcels, with address + attributes when available.

GET/v1/properties/{gnaf_id}/neighbours
cURL
curl --request GET \
  --url 'https://api.microburbs.com.au/v1/properties/GANSW704074813/neighbours' \
  --header 'Authorization: Bearer test'
Example Responses
{
  "data": {
    "neighbours": [
      {
        "address": "3 TAMAR STREET",
        "gnaf_pid": "GANSW704083204",
        "property_type": "house"
      },
      {
        "address": "16 HARRISON STREET",
        "gnaf_pid": "GANSW704073018",
        "property_type": "house"
      },
      {
        "address": "14 HARRISON STREET",
        "gnaf_pid": "GANSW704073016",
        "property_type": "house"
      }
    ]
  }
}
Successful Response200
application/json