
Property Finder API
Companies
/agency/searchProperty Finder /agency/search API
Access Property Finder /agency/search data instantly through RealtyAPI's REST API. This endpoint is designed for applications that depend on accurate, up-to-date real estate information — from property search engines and CRM integrations to investment analysis tools and automated reporting systems. Behind the scenes, RealtyAPI handles authentication, intelligent rate limiting, response normalization, and failover routing so your application never misses a beat. With average response times under 200 milliseconds and 99.9% uptime, you can rely on this endpoint for even the most demanding production workloads.
import requests
url = "https://propertyfinder.realtyapi.io/agency/search"
headers = {
"x-realtyapi-key": "YOUR_API_KEY"
}
params = {
# Add parameters here
}
response = requests.get(url, headers=headers, params=params)
data = response.json()
print(data)What You Can Do With
the /agency/search Endpoint.
Here's what this endpoint provides and how you can use the data it returns.
Endpoint Parameters
6 params| Parameter | Type | Required |
|---|---|---|
location | STRING | Optional |
page | NUMBER | Optional |
resultCount | NUMBER | Optional |
text | STRING | Optional |
parentId | STRING | Optional |
sortOrder | ENUM | Optional |
JSON Response
Receive structured JSON containing /agency/search data from Property Finder. Parse it directly into your application models.
Real-Time Results
Every request fetches live Property Finder 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.