
Realestate.com.au API
Search Realestate.com.au
/search/bylocationRealestate.com.au /search/bylocation API
Build powerful real estate tools with RealtyAPI's /search/bylocation endpoint. Get Realestate.com.au data programmatically without worrying about rate limits, IP blocks, or constantly breaking selectors. Our engineering team maintains the underlying infrastructure around the clock — monitoring for changes, optimizing request paths, and ensuring data accuracy — so you can treat real estate data as a reliable, always-available resource. The endpoint returns well-structured JSON with consistent field names and data types, making it straightforward to map responses to your application's data models. From solo developers to enterprise teams, thousands of customers trust this endpoint for their production data needs.
import requests
url = "https://realestateau.realtyapi.io/search/bylocation"
headers = {
"x-realtyapi-key": "YOUR_API_KEY"
}
params = {
"location": "Bondi, NSW 2026"
}
response = requests.get(url, headers=headers, params=params)
data = response.json()
print(data)What You Can Do With
the /search/bylocation Endpoint.
Here's what this endpoint provides and how you can use the data it returns.
Endpoint Parameters
23 params| Parameter | Type | Required |
|---|---|---|
location | STRING | Required |
page | NUMBER | Optional |
resultCount | NUMBER | Optional |
sortOrder | ENUM | Optional |
searchType | ENUM | Optional |
propertyType | STRING | Optional |
priceRange | STRING | Optional |
bedsRange | STRING | Optional |
bathsRange | STRING | Optional |
carSpacesRange | STRING | Optional |
landSizeRange | STRING | Optional |
surroundingSuburbs | BOOLEAN | Optional |
excludeUnderContract | BOOLEAN | Optional |
excludeAuctions | BOOLEAN | Optional |
excludePrivateSales | BOOLEAN | Optional |
excludeNoDisplayPrice | BOOLEAN | Optional |
excludeDepositTaken | BOOLEAN | Optional |
newListingOnly | BOOLEAN | Optional |
furnished | BOOLEAN | Optional |
petsAllowed | BOOLEAN | Optional |
constructionStatus | ENUM | Optional |
keywords | STRING | Optional |
maxSoldAge | STRING | Optional |
Required Parameters
This endpoint requires location to fetch data. Pass these as query parameters in your request.
JSON Response
Receive structured JSON containing /search/bylocation data from Realestate.com.au. Parse it directly into your application models.
Real-Time Results
Every request fetches live Realestate.com.au data. No stale caches — you always get the most current information available.
Error Handling
Clear HTTP status codes and error messages help you handle edge cases gracefully. See our documentation for the full error reference.