Microburbs
Suburb - Finder

Search suburbs

GET/v1/suburbs/finder/search30¢ per call

Boolean-AND range filter over suburb metrics, single-column sort, paginated. Every row carries its rank — position in the ranked result (1 = top of the sort, out of meta.total). When sorting by a median or a growth, the actual value is also shown for the first 5 and last 5 rows of the page; for any other suburb's number, call the per-field endpoint (market/, forecast/). Flat 30c.

Price: 30¢ per call.

Authorization

Request

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

Query parameters

filteroptionalrange filters — add one or more; all must match

Leave min or max blank for an open-ended range. Each row is one criterion; all must match.

statesstringoptional

Comma-separated states (names or abbreviations), e.g. `VIC`.

regionsstringoptional

Comma-separated EXACT SA4 region names — call GET /v1/suburbs/finder/regions for the list. e.g. `Melbourne - Inner`, `Melbourne - West`. A metro name like `Melbourne` alone will NOT match.

property_typestringoptional

'house' or 'unit'.

sortoptionalrank the results by a field
limitintegeroptional

Page size (clamped to 25).

offsetintegeroptional

Row offset.

Responses

Successful Response

application/json
FinderSearchResponsefields returned to you
suburbsarray of FinderRowalways returned

Matched suburbs, sorted.

metaobjectalways returned

Pagination + total + the value-reveal policy for a search.

GET/v1/suburbs/finder/search
cURL
curl --request GET \
  --url 'https://api.microburbs.com.au/v1/suburbs/finder/search' \
  --header 'Authorization: Bearer test'
Example Responses
{
  "data": {
    "meta": {
      "limit": 25,
      "offset": 0,
      "returned": 25,
      "total": 126
    },
    "suburbs": [
      {
        "lga": "Lake Macquarie",
        "rank": 3,
        "sa4": "Newcastle and Lake Macquarie",
        "state": "NSW",
        "suburb": "Windale",
        "value": 0.163
      }
    ]
  }
}
Successful Response200
application/json