RealEstate.co.nz [💰$0.9/1K] | NZ Property | Agents avatar

RealEstate.co.nz [💰$0.9/1K] | NZ Property | Agents

Pricing

from $0.90 / 1,000 results

Go to Apify Store
RealEstate.co.nz [💰$0.9/1K] | NZ Property | Agents

RealEstate.co.nz [💰$0.9/1K] | NZ Property | Agents

Scrape New Zealand property listings with agent details from realestate.co.nz

Pricing

from $0.90 / 1,000 results

Rating

0.0

(0)

Developer

Ahmed Jasarevic

Ahmed Jasarevic

Maintained by Community

Actor stats

0

Bookmarked

4

Total users

0

Monthly active users

6 days ago

Last modified

Share

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

  1. Scrapes Property Listings — Extracts all listing details from realestate.co.nz
  2. Captures Agent Data — Includes agent name, phone, and email for each listing
  3. Handles Pagination — Automatically navigates through search result pages
  4. Respects Rate Limits — Built-in delay and proxy support for reliable scraping

Features

  • Full Listing Data — Title, price, address, bedrooms, bathrooms, parking, land area, property type
  • Agent Details — Name, phone, email, and profile URL for every listing
  • Nearby Schools — School names, distances, and zone status
  • Property Images — Full array of listing photo URLs
  • Proxy Support — Built-in proxy configuration for reliability
  • Max Items Control — Limit the number of listings scraped per run

Input Schema

FieldTypeRequiredDefaultDescription
startUrlstringYesStarting URL from realestate.co.nz (search or category page)
maxItemsintegerNo50Maximum number of listings to scrape
proxyConfigurationobjectNoApify proxy configuration

Example Input

{
"startUrl": "https://www.realestate.co.nz/residential/auckland",
"maxItems": 100,
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"]
}
}

Output Schema

FieldTypeDescription
idstringListing ID
titlestringProperty listing title
typestringProperty sub-type (House, Apartment, etc.)
statusstringListing status (active, etc.)
location.addressstringDisplay address
location.fullstringFull address with district/region
location.suburbstringSuburb name
location.districtstringDistrict name
location.regionstringRegion name
location.coords.latnumberLatitude
location.coords.lngnumberLongitude
price.displaystringPrice display text
price.codestringPrice type code
price.deadlinestringDeadline date (if applicable)
specs.bedroomsnumberNumber of bedrooms
specs.bathroomsnumberNumber of bathrooms
specs.total_wcnumberTotal toilets
specs.parking_totalnumberTotal parking spaces
specs.land_sizestringLand area (e.g., "672 SQM")
specs.studynumberStudy count
specs.poolbooleanHas swimming pool
specs.is_new_buildbooleanIs new construction
media.urlstringListing URL
media.external_linkstringExternal website link
media.imagesarrayArray of image URLs
media.virtual_toursarrayVirtual tour links
nearby.schoolsarrayNearby schools with distance and zone info
nearby.childcarearrayNearby childcare centres
agentsarrayAgent details (name, phone, email, photo, profile URL)
published_atstringPublication timestamp
last_updatedstringLast update timestamp

Example Output

{
"id": "43119675",
"title": "More Space. More Privacy. More Possibilities.",
"type": "House",
"status": "active",
"location": {
"address": "226A Dunns Crossing Road, Rolleston",
"full": "226A Dunns Crossing Road, Rolleston, Selwyn, Canterbury",
"suburb": "Rolleston",
"district": "Selwyn",
"region": "Canterbury",
"coords": { "lat": -43.61498, "lng": 172.36408 }
},
"price": {
"display": "Deadline Sale",
"code": "7",
"deadline": "2026-09-15T17:00:00+12:00"
},
"specs": {
"bedrooms": 4,
"bathrooms": 2,
"total_wc": 2,
"parking_total": 2,
"land_size": "1291 SQM",
"study": 0,
"pool": false,
"is_new_build": false
},
"media": {
"url": "https://www.realestate.co.nz/43119675/residential/sale/...",
"images": ["https://static-platform.realestate.co.nz/..."],
"virtual_tours": []
},
"nearby": {
"schools": [
{ "name": "West Rolleston Primary School", "dist": "1.11km", "in_zone": true }
],
"childcare": ["Active Explorers Rolleston"]
},
"agents": [
{ "name": "Anna James", "phone": "027 222 2742", "email": "anna.j@arizto.co.nz", "profile_url": "https://www.realestate.co.nz/agent/anna-james" }
],
"published_at": "2026-09-02T21:36:27+12:00",
"last_updated": "2026-09-02T21:36:27+12:00"
}

How to Use

Quick Start

  1. Click Try Actor on the Actor page
  2. Enter a valid realestate.co.nz URL
  3. Set maxItems and proxy configuration
  4. Click Start
  5. 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 type
const 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.type === 'House');

Pricing

ItemCost
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.


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

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


Built on the Apify Platform — scalable web scraping and automation.

Verified related actors on Apify that pair well with this one. All links point to real, publicly available actors.