# Auckland Property Listings Scraper

**Use case:** 

Scrape Auckland Realestate.co.nz sale listings, prices, property details, photos, open homes, agents, and agencies into structured data.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.realestate.co.nz/residential/sale/auckland?by=latest&oad=true"
    }
  ],
  "maxItems": 20,
  "includeDetails": true,
  "maxPages": 2,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "listingId": {
    "label": "Listing ID"
  },
  "status": {
    "label": "Status"
  },
  "address": {
    "label": "Address"
  },
  "priceDisplay": {
    "label": "Price"
  },
  "priceAmount": {
    "label": "Price amount",
    "format": "number"
  },
  "bedrooms": {
    "label": "Beds",
    "format": "number"
  },
  "bathrooms": {
    "label": "Baths",
    "format": "number"
  },
  "landAreaM2": {
    "label": "Land m²",
    "format": "number"
  },
  "propertyType": {
    "label": "Property type"
  },
  "listedDate": {
    "label": "Listed"
  },
  "agencyName": {
    "label": "Agency"
  },
  "url": {
    "label": "Listing",
    "format": "link"
  },
  "imageUrl": {
    "label": "Image",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Realestate.co.nz Property Listings Scraper](https://apify.com/automation-lab/realestate-co-nz-property-listings-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/realestate-co-nz-property-listings-scraper) to learn more, explore other use cases, and run it yourself.