
Property Finder API
Search
/search/newprojectsProperty Finder /search/newprojects API
Integrate Property Finder /search/newprojects data into your application without friction using the /search/newprojects endpoint from RealtyAPI. Our platform handles the entire data collection pipeline end to end — from navigating anti-bot protections and managing distributed request infrastructure to normalizing inconsistent data formats into clean JSON. That means you can focus your engineering time on building features your users care about instead of maintaining fragile scraping scripts that break every time the source site updates its layout. The endpoint works with any language or framework that can make HTTP requests, and our interactive playground lets you test queries before writing a single line of code.
import requests
url = "https://propertyfinder.realtyapi.io/search/newprojects"
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 /search/newprojects Endpoint.
Here's what this endpoint provides and how you can use the data it returns.
Endpoint Parameters
9 params| Parameter | Type | Required |
|---|---|---|
location | STRING | Optional |
page | NUMBER | Optional |
resultCount | NUMBER | Optional |
propertyType | STRING | Optional |
priceRange | STRING | Optional |
bedrooms | STRING | Optional |
developerId | STRING | Optional |
completionStatus | ENUM | Optional |
sortOrder | ENUM | Optional |
JSON Response
Receive structured JSON containing /search/newprojects 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.