
Realestate.com.au API
Search Realestate.com.au
/search/bypolygonRealestate.com.au /search/bypolygon API
The /search/bypolygon endpoint opens up Realestate.com.au data for your real estate applications, giving you programmatic access to information that would otherwise require manual research or unreliable scraping. Whether you are building a property search tool, an investment analysis platform, a rental comparison engine, or a market analytics dashboard, this endpoint delivers structured, reliable data on demand. Every response is normalized into a consistent JSON schema, so you don't need to write different parsers for different data sources. Combined with RealtyAPI's other endpoints, you can build a complete real estate data layer that spans multiple providers through a single integration.
import requests
url = "https://realestateau.realtyapi.io/search/bypolygon"
headers = {
"x-realtyapi-key": "YOUR_API_KEY"
}
params = {
"polygon": "151.26 -33.90,151.28 -33.90,151.28 -33.88,151.26 -33.88"
}
response = requests.get(url, headers=headers, params=params)
data = response.json()
print(data)What You Can Do With
the /search/bypolygon Endpoint.
Here's what this endpoint provides and how you can use the data it returns.
Endpoint Parameters
23 params| Parameter | Type | Required |
|---|---|---|
polygon | 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 polygon to fetch data. Pass these as query parameters in your request.
JSON Response
Receive structured JSON containing /search/bypolygon 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.