Real Estate AU NZ Search by URLs and Keywords
Pricing
from $5.00 / 1,000 real estate listings
Real Estate AU NZ Search by URLs and Keywords
Search public Australian and New Zealand real-estate listings by saved URL or place keyword. Returns structured listing data from realestate.com.au and realestate.co.nz for market research, lead workflows, property monitoring, and AI-agent use.
Pricing
from $5.00 / 1,000 real estate listings
Rating
0.0
(0)
Developer
Muhammad Afzal
Maintained by CommunityActor stats
0
Bookmarked
1
Total users
0
Monthly active users
3 days ago
Last modified
Categories
Share
Real Estate AU & NZ Search by URLs and Keywords
Search public residential property listings on realestate.com.au and realestate.co.nz using saved search URLs or place/suburb keywords. The Actor returns one stable JSON row per listing and supports light pagination, listing detail URLs, sale/rent intent, and concise or detailed output.
Input
{"country": "au","searchQueries": ["Sydney NSW", "Melbourne VIC"],"listingType": "sale","maxResults": 50,"maxPagesPerSource": 3,"responseFormat": "detailed"}
Use startUrls when you already have URLs, for example https://www.realestate.com.au/buy/in-sydney/list-1 or https://www.realestate.co.nz/residential/sale/auckland. The actor also accepts individual public listing URLs.
Output
Rows include source, listingUrl, address, price, priceText, currency, bedrooms, bathrooms, parkingSpaces, landSize, propertyType, description, agentName, agentPhone, agencyName, imageUrls, coordinates when published, scrapedKeywords, and warnings.
The actor reads public page content only. It does not return owner identities, private MLS fields, login-only data, or bypass authentication. Site markup can change; rows preserve warnings and nulls when a public field is unavailable.
Billing
PPE is configured at $0.005 per listing returned plus the Actor-start event. PPE platform-usage pass-through is enabled for compute and proxy costs. A typical 50-result run costs about $0.25 in result events before platform compute/proxy usage.
MCP-friendly behavior
Use this tool for Australian or New Zealand listing discovery by public search URL or place keyword. Do not use it for agent-only lookup, owner data, private MLS data, or arbitrary web search. Results are flat, stable, and capped by maxResults so an AI agent can budget a call.
What data does Real Estate AU & NZ Search by URLs and Keywords return?
Results are written to the default Apify dataset or the output links declared by the Actor. Inspect the dataset schema and a small test run before building a production mapping.
Use cases
- Compare listings, locations, availability, and market signals for property research.
- Build public prospect lists and qualify organizations or professionals before responsible outreach.
- Run a one-off research job and export the structured result as JSON, CSV, Excel, XML, or RSS from Apify.
- Schedule the same input to monitor changes over time and send completed datasets to a webhook or integration.
- Feed schema-shaped records into a database, spreadsheet, BI tool, or AI workflow with the source URL retained for verification.
Run Real Estate AU & NZ Search by URLs and Keywords with the Apify API
import { ApifyClient } from 'apify-client';const client = new ApifyClient({ token: process.env.APIFY_TOKEN });const run = await client.actor('muhammadafzal/realestate-au-nz-search').call({"searchQueries": [],"country": "au","listingType": "sale","maxResults": 25,"maxPagesPerSource": 3,"responseFormat": "detailed"});const { items } = await client.dataset(run.defaultDatasetId).listItems();console.log(items);
You can also run the Actor from Apify Console, schedules, webhooks, the REST API, Make, Zapier, n8n, or the hosted Apify MCP server.
Responsible use
Use this Actor only for data you are authorized to access. Follow the target website's terms, robots and access policies, and applicable privacy, database, copyright, anti-spam, and data-protection laws. Do not use it to bypass authentication or other access controls, collect private data, harass people, or make high-impact decisions without independent verification.
Frequently asked questions
Can I schedule Real Estate AU & NZ Search by URLs and Keywords?
Yes. Use an Apify schedule to run the same saved input at a chosen interval, then connect a webhook or integration to process the dataset when the run finishes.
How should I test a new input?
Begin with the prefilled example or a small limit. Confirm that the output fields, source coverage, runtime, and live charges match your workflow before increasing the scope.
How do I export the results?
Open the run's default dataset in Apify Console and export JSON, CSV, Excel, XML, or RSS. Applications can retrieve the same records through the Apify API client or REST dataset endpoint.
Can an AI agent call this Actor?
Yes. Add muhammadafzal/realestate-au-nz-search through the hosted Apify MCP server or call it through the API. The Actor's input and dataset schemas help agents construct valid requests and interpret returned records.