
Realestate.com.au API
Search Realestate.com.au
/search/byurlRealestate.com.au /search/byurl API
Power your real estate application with reliable /search/byurl data from Realestate.com.au. This endpoint is built on infrastructure that processes millions of requests daily with consistent sub-second latency and high availability across all regions. Unlike DIY scraping solutions that degrade over time and require constant maintenance, RealtyAPI provides a stable interface that your team can depend on quarter after quarter. The data is fresh — every request fetches live information from Realestate.com.au — and the response format is designed for easy parsing and storage. It is the kind of data infrastructure that lets your engineering team focus on product work instead of plumbing.
import requests
url = "https://realestateau.realtyapi.io/search/byurl"
headers = {
"x-realtyapi-key": "YOUR_API_KEY"
}
params = {
"url": "https://www.realestate.com.au/buy/in-bondi+nsw+2026/list-1"
}
response = requests.get(url, headers=headers, params=params)
data = response.json()
print(data)What You Can Do With
the /search/byurl Endpoint.
Here's what this endpoint provides and how you can use the data it returns.
Endpoint Parameters
23 params| Parameter | Type | Required |
|---|---|---|
url | 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 url to fetch data. Pass these as query parameters in your request.
JSON Response
Receive structured JSON containing /search/byurl 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.