RealEstate.co.nz [💰$2/1K] | NZ Property | Agents
Pricing
from $3.00 / 1,000 results
RealEstate.co.nz [💰$2/1K] | NZ Property | Agents
Scrape New Zealand property listings with agent details from realestate.co.nz
Pricing
from $3.00 / 1,000 results
Rating
0.0
(0)
Developer
Ahmed Jasarevic
Maintained by CommunityActor stats
0
Bookmarked
3
Total users
0
Monthly active users
a day ago
Last modified
Categories
Share
RealEstate.co.nz Scraper (with Agents & Details)
[
](https://apify.com/vibhorv realestate-co-nz-scraper-with-agents-details)
Scrape New Zealand Property Listings with Full Agent Details — realestate.co.nz Data Extractor
The RealEstate.co.nz Scraper extracts comprehensive property listings from New Zealand's leading real estate portal, including full agent contact details. Get property specs, pricing, images, and agent information in structured JSON format.
Perfect for real estate market analysis, agent outreach campaigns, property investment research, and building NZ property databases.
What It Does
- Scrapes Property Listings — Extracts all listing details from realestate.co.nz
- Captures Agent Data — Includes agent name, phone, and email for each listing
- Handles Pagination — Automatically navigates through search result pages
- Respects Rate Limits — Built-in delay and proxy support for reliable scraping
Features
- Full Listing Data — Title, price, address, bedrooms, bathrooms, parking, land/floor area, property type
- Agent Details — Name, phone, and email for every listing
- Proxy Support — Built-in proxy configuration for reliability
- Image URLs — Direct links to property photos
- Property Descriptions — Full listing text for analysis
- Max Items Control — Limit the number of listings scraped per run
Input Schema
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
startUrl | string | Yes | — | Starting URL from realestate.co.nz (search or category page) |
maxItems | integer | No | 50 | Maximum number of listings to scrape |
proxyConfiguration | object | No | — | Apify proxy configuration |
Example Input
{"startUrl": "https://www.realestate.co.nz/residential/auckland","maxItems": 100,"proxyConfiguration": {"useApifyProxy": true,"apifyProxyGroups": ["RESIDENTIAL"]}}
Output Schema
| Field | Type | Description |
|---|---|---|
title | string | Property listing title |
price | string | Listed price or "Price by negotiation" |
address | string | Full property address |
bedrooms | number | Number of bedrooms |
bathrooms | number | Number of bathrooms |
parking | string | Parking information (e.g., "2 car garage") |
landArea | string | Land area (e.g., "672 m²") |
floorArea | string | Floor area (e.g., "185 m²") |
propertyType | string | Type of property (e.g., "House", "Apartment") |
agentName | string | Listing agent's name |
agentPhone | string | Agent's phone number |
agentEmail | string | Agent's email address |
url | string | Full URL of the listing |
imageUrl | string | Primary image URL |
description | string | Property description text |
Example Output
{"title": "Stunning Family Home in Ponsonby","price": "$1,850,000","address": "42 Peel Street, Ponsonby, Auckland 1021","bedrooms": 4,"bathrooms": 2,"parking": "2 car garage","landArea": "405 m²","floorArea": "220 m²","propertyType": "House","agentName": "Sarah Mitchell","agentPhone": "+64 21 555 0123","agentEmail": "sarah@realty.co.nz","url": "https://www.realestate.co.nz/residential/auckland/ponsonby/42-peel-street","imageUrl": "https://images.realestate.co.nz/listings/abc123.jpg","description": "Beautifully renovated character home..."}
How to Use
Quick Start
- Click Try Actor on the Actor page
- Enter a valid realestate.co.nz URL
- Set
maxItemsand proxy configuration - Click Start
- View results in the Output tab
Using the API
import { ApifyClient } from 'apify-client';const client = new ApifyClient({ token: 'YOUR_API_TOKEN' });const run = await client.actor('bUEqTRkCHgXqkAaTY').call({startUrl: 'https://www.realestate.co.nz/residential/auckland',maxItems: 50,proxyConfiguration: { useApifyProxy: true },});const { items } = await client.dataset(run.defaultDatasetId).listItems();console.log(items);
Data Export
- JSON — Native format via API
- CSV — Download from Apify Console
- Excel — Import CSV to spreadsheet
- Google Sheets — Use Apify's Google Sheets integration
Usage Examples
Market Analysis
"Scrape all Auckland residential listings to analyze median price per suburb."
Agent Outreach
"Extract agent emails from Wellington listings for a partnership campaign."
Investment Research
"Collect all properties in Christchurch under $600k with 3+ bedrooms."
For AI Agents
This Actor supports automated property data workflows:
- Lead Generation — Build lists of properties with agent contact details
- Market Monitoring — Track new listings and price changes
- Data Enrichment — Add NZ property data to existing databases
- Chatbot Integration — Provide property search via conversational UI
API Integration
// Scrape and filter by property typeconst results = await client.actor('bUEqTRkCHgXqkAaTY').call({startUrl: 'https://www.realestate.co.nz/residential/auckland',maxItems: 200,});const dataset = await client.dataset(results.defaultDatasetId).listItems();const houses = dataset.items.filter(i => i.propertyType === 'House');
Pricing
| Item | Cost |
|---|---|
| Per result | $0.002 |
| 1,000 listings | ~$2.00 |
| 10,000 listings | ~$20.00 |
Pay-per-result pricing. You are only charged for successfully scraped listings.
Legal Disclaimer
This Actor scrapes publicly available listing data from realestate.co.nz. All data is sourced from publicly accessible pages. This tool is intended for legitimate research, analysis, and personal use. Users must comply with realestate.co.nz's Terms of Service and applicable New Zealand privacy laws. The developer assumes no responsibility for misuse of scraped data. Always verify critical information with the original source.
Frequently Asked Questions
Is this Actor legal to use?
Yes. The Actor scrapes publicly available listing data. However, you must comply with realestate.co.nz's Terms of Service and applicable laws. Do not use scraped data for spam or harassment.
Can I scrape by specific suburb or region?
Yes. Use the search or category URL from realestate.co.nz as the startUrl. For example, a specific suburb URL or a filtered search results page.
How accurate is the agent contact information?
Agent data is extracted directly from listing pages. Contact details are current as of the scrape time. Agents may update or remove their details at any time.
Does it handle sold listings?
No. This Actor is designed for active listings only. Sold or expired listings may not be accessible.
Can I run multiple instances simultaneously?
Yes. Apify allows concurrent Actor runs. Use different startUrl values to scrape different regions in parallel.
SEO Keywords
realestate.co.nz scraper, New Zealand property scraper, NZ real estate data, property listing extractor, Auckland property scraper, Wellington real estate, NZ house prices, property agent contact, real estate scraping tool, New Zealand housing market, residential property data, real estate API NZ, property data extraction, NZ property listings, real estate analytics
Support
- Issues: Report bugs or request features via the Apify Console
- Documentation: Apify Docs
- Community: Apify Discord
Built on the Apify Platform — scalable web scraping and automation.
Related Actors
Verified related actors on Apify that pair well with this one. All links point to real, publicly available actors.