# Domain.com.au Property Scraper (`haketa/domain-com-au-scraper`) Actor

Scrape property listings from Domain.com.au — Australia's second largest real estate platform with 350K+ active listings. Extract price, auction data, price guide, agent info, school catchments, features and inspection times by suburb, listing type and filters.

- **URL**: https://apify.com/haketa/domain-com-au-scraper.md
- **Developed by:** [Haketa](https://apify.com/haketa) (community)
- **Categories:** Real estate, Developer tools, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Domain.com.au Property Scraper

Extract property listings from **[Domain.com.au](https://www.domain.com.au)** — Australia's second largest real estate platform (News Corp) with 350K+ active listings and 9M+ monthly visitors. Covers sale, rent and sold properties with full auction data, price guide, agent info, school catchments and more.

[![Apify Actor](https://img.shields.io/badge/Apify-Actor-blue)](https://apify.com)
[![No Browser](https://img.shields.io/badge/Engine-HTML%20%2B%20Cheerio-green)]()

---

### What It Does

Scrapes Domain.com.au search result pages and optionally fetches individual listing detail pages. Returns structured JSON for each property including address, price, property type, bedrooms/bathrooms, agent info, description, features and auction status.

**Default run (prefill input):** Scrapes ~20-50 sale listings from Sydney CBD, completes in under 3 minutes, and produces a non-empty dataset.

---

### How It Works

Domain.com.au is a Next.js application. This actor:

1. Fetches search page HTML via `got-scraping` with Australian residential proxy
2. Parses listing cards from the DOM using Cheerio (`[data-testid*="listing-card"]`)
3. Extracts listing ID, URL, price, address, beds/baths/cars, agent, property type and tags
4. Paginates via `?page=2`, `?page=3` etc.
5. Optionally fetches each listing's detail page for rich data (description, features, inspection times)

No browser or Playwright needed — pure HTTP + HTML parsing.

---

### Input

#### Quick Start (Default)

The actor runs out of the box with no configuration. Default input scrapes sale listings from Sydney:

```json
{
  "listingType": "sale",
  "suburbs": ["sydney-nsw-2000"],
  "maxListings": 50,
  "maxPages": 5
}
````

#### Full Example

```json
{
  "listingType": "sale",
  "suburbs": ["bondi-beach-nsw-2026", "south-yarra-vic-3141"],
  "propertyTypes": ["house", "apartment"],
  "minBedrooms": 2,
  "maxBedrooms": 4,
  "minPrice": 500000,
  "maxPrice": 1500000,
  "auctionOnly": false,
  "scrapeDetails": true,
  "maxListings": 200,
  "maxPages": 10,
  "requestDelay": 2000,
  "maxConcurrency": 1
}
```

#### Parameters

| Parameter | Type | Default | Description |
|---|---|---|---|
| `listingType` | string | `sale` | `sale`, `rent` or `sold` |
| `suburbs` | array | `["sydney-nsw-2000"]` | Suburb slugs (see list below) |
| `startUrls` | array | `[]` | Direct search or listing URLs |
| `propertyTypes` | array | `[]` | Filter: `house`, `apartment`, `townhouse`, `villa`, `land`, `rural` |
| `minBedrooms` | integer | `0` | Minimum bedrooms (0 = no filter) |
| `maxBedrooms` | integer | `0` | Maximum bedrooms (0 = no filter) |
| `minPrice` | integer | `0` | Minimum price AUD (0 = no filter) |
| `maxPrice` | integer | `0` | Maximum price AUD (0 = no filter) |
| `auctionOnly` | boolean | `false` | Only scrape auction listings |
| `scrapeDetails` | boolean | `false` | Fetch detail pages for description, features, inspections. **Set `true` for production.** |
| `maxListings` | integer | `50` | Total listings cap (0 = unlimited) |
| `maxPages` | integer | `5` | Pages per suburb (~20 listings each) |
| `proxyConfiguration` | object | AU residential | **Australian residential proxy strongly recommended** |
| `requestDelay` | integer (ms) | `1500` | Delay between requests |
| `maxConcurrency` | integer | `1` | Parallel requests (keep low) |

***

### Suburb Slugs

Format: `{suburb-name}-{state}-{postcode}` (lowercase, hyphens)

#### Sydney

| Slug | Suburb |
|---|---|
| `sydney-nsw-2000` | Sydney CBD |
| `bondi-beach-nsw-2026` | Bondi Beach |
| `surry-hills-nsw-2010` | Surry Hills |
| `manly-nsw-2095` | Manly |
| `parramatta-nsw-2150` | Parramatta |
| `newtown-nsw-2042` | Newtown |
| `mosman-nsw-2088` | Mosman |
| `chatswood-nsw-2067` | Chatswood |
| `cronulla-nsw-2230` | Cronulla |

#### Melbourne

| Slug | Suburb |
|---|---|
| `melbourne-vic-3000` | Melbourne CBD |
| `south-yarra-vic-3141` | South Yarra |
| `richmond-vic-3121` | Richmond |
| `st-kilda-vic-3182` | St Kilda |
| `fitzroy-vic-3065` | Fitzroy |
| `toorak-vic-3142` | Toorak |
| `brighton-vic-3186` | Brighton |

#### Other Cities

| Slug | City |
|---|---|
| `brisbane-qld-4000` | Brisbane CBD |
| `perth-wa-6000` | Perth CBD |
| `adelaide-sa-5000` | Adelaide CBD |
| `hobart-tas-7000` | Hobart CBD |
| `canberra-act-2601` | Canberra CBD |
| `gold-coast-qld-4217` | Gold Coast |

***

### Output

#### Search Mode (`scrapeDetails: false`)

Fast extraction from search page cards:

```json
{
  "listingId": "2020804017",
  "listingType": "sale",
  "saleMethod": null,
  "url": "https://www.domain.com.au/4-29-beach-road-bondi-beach-nsw-2026-2020804017",
  "price": 1500000,
  "priceType": "guide",
  "priceDisplay": "Buyers guide $1,500,000",
  "address": "4/29 Beach Road, Bondi Beach",
  "suburb": "Bondi Beach",
  "state": "NSW",
  "postcode": "2026",
  "propertyType": "Apartment / Unit / Flat",
  "bedrooms": 2,
  "bathrooms": 1,
  "carSpaces": null,
  "agentName": "Zakir Abdallaoui",
  "agencyName": "Sydney Sotheby's International Realty",
  "tags": ["New"],
  "isAuction": false,
  "searchSuburb": "bondi-beach-nsw-2026",
  "scrapedAt": "2026-04-30T20:19:44.522Z"
}
```

#### Detail Mode (`scrapeDetails: true`)

Rich data from individual listing pages:

```json
{
  "listingId": "2020301768",
  "listingType": "sale",
  "url": "https://www.domain.com.au/castlereagh-sydney-nsw-2000-2020301768",
  "price": null,
  "priceType": "contactAgent",
  "priceDisplay": "Contact Agent",
  "address": "111 Castlereagh",
  "suburb": "Sydney",
  "state": "NSW",
  "postcode": "2000",
  "propertyType": "apartment",
  "bedrooms": 2,
  "bathrooms": 2,
  "carSpaces": 1,
  "agentName": "Belle Property International",
  "description": "Taking in the glorious views of Sydney Harbour...",
  "features": ["Air conditioning", "Dishwasher", "Intercom", "Floorboards"],
  "images": ["https://rimh2.domainstatic.com.au/..."],
  "tags": ["New"],
  "scrapedAt": "2026-04-30T20:10:52.341Z"
}
```

***

### Price Parser

Australian property price formats are parsed into structured data:

| Display Text | `priceType` | `price` | `priceMin` | `priceMax` |
|---|---|---|---|---|
| `$1,200,000` | `fixed` | 1200000 | — | — |
| `$800,000 - $880,000` | `range` | 800000 | 800000 | 880000 |
| `Buyers Guide $1,500,000` | `guide` | 1500000 | — | — |
| `Price Guide $1.2M - $1.32M` | `guide` | 1200000 | 1200000 | 1320000 |
| `Offers Over $850,000` | `offersOver` | 850000 | — | — |
| `From $650,000` | `from` | 650000 | — | — |
| `Contact Agent` | `contactAgent` | — | — | — |
| `Auction` | `auction` | — | — | — |
| `Expressions of Interest` | `eoi` | — | — | — |
| `$450 per week` | `perWeek` | 450 | — | — |

***

### Australia-Specific Fields

#### Auction Detection

Listings with auction sale method are flagged with `isAuction: true` and `saleMethod: "auction"`. Use `auctionOnly: true` to filter exclusively for auction listings.

#### Tags

Market sentiment indicators extracted as boolean flags:

- `isPriceReduced` — seller dropped the asking price
- `isUnderContract` — sale agreed, pending settlement
- `isHotProperty` — high demand
- `isNewListing` — recently listed

#### Detail Page Data (requires `scrapeDetails: true`)

- `description` — full listing text
- `features` — property features (aircon, dishwasher, pool etc.)
- `inspectionTimes` — upcoming open house dates
- `schoolCatchments` — nearby school zones
- `nbnConnection` — internet connection type
- `floorplanUrl` — floor plan image
- `councilArea` — local municipality

***

### Modes

#### Search Mode (default, fast)

Set `scrapeDetails: false`. Extracts basic data from search page cards. ~20-50 listings per minute.

#### Detail Mode (rich data)

Set `scrapeDetails: true`. Fetches each listing's detail page. ~3-5 listings per minute. Returns description, features, inspections and more.

#### Direct URL Mode

Pass individual listing URLs in `startUrls`:

```json
{
  "startUrls": [
    { "url": "https://www.domain.com.au/106-ramsgate-avenue-bondi-beach-nsw-2026-2020804269" }
  ]
}
```

***

### Technical Notes

- **Proxy**: Domain.com.au blocks datacenter IPs aggressively. The default config uses Apify's RESIDENTIAL proxy pool with AU country. This is required for reliable operation.
- **Rate Limiting**: Keep `requestDelay` at 1500ms+ and `maxConcurrency` at 1-2.
- **Architecture**: Domain uses Next.js SPA. Listing data is extracted from server-rendered HTML cards via Cheerio DOM parsing. No browser or Playwright needed.
- **Pagination**: Each search page shows ~20 listing cards. The actor paginates via `?page=N` parameter.
- **Images**: Property images from search cards. Detail pages may provide additional high-resolution images.

***

### Cost & Performance

| Mode | Speed | CU per 100 listings |
|---|---|---|
| Search only (`scrapeDetails: false`) | ~20-50/min | ~0.01 |
| With details (`scrapeDetails: true`) | ~3-5/min | ~0.05 |

***

### Changelog

| Version | Date | Notes |
|---|---|---|
| 1.0.0 | 2026-04-30 | Initial release — HTML + Cheerio extraction, auction detection, price parser, agent info, detail page enrichment |

# Actor input Schema

## `listingType` (type: `string`):

Type of listings to scrape: 'sale' for properties for sale, 'rent' for rental listings, 'sold' for recently sold properties.

## `suburbs` (type: `array`):

Suburb slugs to search. Format: 'suburb-state-postcode'. Examples: 'sydney-nsw-2000', 'melbourne-vic-3000', 'brisbane-qld-4000', 'bondi-beach-nsw-2026', 'south-yarra-vic-3141'. See README for full list.

## `startUrls` (type: `array`):

Direct Domain.com.au search URLs or individual listing URLs. Use this instead of suburbs for custom filtered searches. Example: 'https://www.domain.com.au/sale/sydney-nsw-2000/?bedrooms=3-4\&price=800000-1500000'

## `propertyTypes` (type: `array`):

Filter by property type. Leave empty for all. Options: 'house', 'apartment', 'townhouse', 'villa', 'land', 'rural', 'unitBlock', 'retire', 'studio'.

## `minBedrooms` (type: `integer`):

Minimum number of bedrooms. 0 = no filter.

## `maxBedrooms` (type: `integer`):

Maximum number of bedrooms. 0 = no filter.

## `minPrice` (type: `integer`):

Minimum price filter (AUD). 0 = no filter.

## `maxPrice` (type: `integer`):

Maximum price filter (AUD). 0 = no filter.

## `auctionOnly` (type: `boolean`):

Only scrape listings with auction sale method.

## `scrapeDetails` (type: `boolean`):

Fetch individual listing pages for rich data: description, features, inspection times, school catchments, NBN, floor plans. Slower but much more complete. Enable for production runs.

## `maxListings` (type: `integer`):

Maximum total listings to scrape. Set 0 for unlimited.

## `maxPages` (type: `integer`):

Maximum pages per suburb search. Each page returns ~20 listings. Set 0 for unlimited.

## `proxyConfiguration` (type: `object`):

Proxy settings. Australian residential proxies strongly recommended — Domain blocks datacenter IPs aggressively.

## `requestDelay` (type: `integer`):

Delay between requests in milliseconds. Keep above 1000 to avoid rate limiting.

## `maxConcurrency` (type: `integer`):

Parallel requests. Keep low (1-3) — Domain rate limits aggressively.

## Actor input object example

```json
{
  "listingType": "sale",
  "suburbs": [
    "sydney-nsw-2000"
  ],
  "startUrls": [],
  "propertyTypes": [],
  "minBedrooms": 0,
  "maxBedrooms": 0,
  "minPrice": 0,
  "maxPrice": 0,
  "auctionOnly": false,
  "scrapeDetails": false,
  "maxListings": 50,
  "maxPages": 5,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "AU"
  },
  "requestDelay": 1500,
  "maxConcurrency": 1
}
```

# Actor output Schema

## `listingId` (type: `string`):

Domain listing ID

## `listingType` (type: `string`):

sale / rent / sold

## `saleMethod` (type: `string`):

auction / privateTreaty / eoi

## `url` (type: `string`):

Full listing URL

## `promoType` (type: `string`):

premiumplus / premiere / standard

## `price` (type: `string`):

Numeric price (AUD) if parseable

## `priceType` (type: `string`):

fixed / range / offersOver / from / contactAgent / guide

## `priceDisplay` (type: `string`):

Original display price text

## `priceGuide` (type: `string`):

Agent price guide (NSW/VIC)

## `priceMin` (type: `string`):

Minimum of price range

## `priceMax` (type: `string`):

Maximum of price range

## `auctionDate` (type: `string`):

Auction date/time ISO

## `auctionLocation` (type: `string`):

Where auction is held

## `isAuction` (type: `string`):

Listed for auction

## `address` (type: `string`):

Street address

## `suburb` (type: `string`):

Suburb name

## `state` (type: `string`):

NSW / VIC / QLD / WA / SA / TAS / ACT / NT

## `postcode` (type: `string`):

Postal code

## `latitude` (type: `string`):

Latitude coordinate

## `longitude` (type: `string`):

Longitude coordinate

## `propertyType` (type: `string`):

house / apartment / townhouse / land etc.

## `bedrooms` (type: `string`):

Number of bedrooms

## `bathrooms` (type: `string`):

Number of bathrooms

## `carSpaces` (type: `string`):

Parking spaces

## `landSize` (type: `string`):

Land area in m²

## `buildingSize` (type: `string`):

Building area in m²

## `agentName` (type: `string`):

Listing agent full name

## `agentPhone` (type: `string`):

Agent contact number

## `agencyName` (type: `string`):

Real estate agency

## `tags` (type: `string`):

Listing tags array

## `isPriceReduced` (type: `string`):

Has 'Price Reduced' tag

## `isUnderContract` (type: `string`):

Has 'Under Contract' tag

## `isHotProperty` (type: `string`):

Has 'Hot Property' tag

## `isNewListing` (type: `string`):

Has 'New Listing' tag

## `description` (type: `string`):

Full listing description

## `features` (type: `string`):

Property features array

## `inspectionTimes` (type: `string`):

Upcoming inspection times

## `schoolCatchments` (type: `string`):

Nearby school catchment zones

## `nbnConnection` (type: `string`):

NBN internet connection type

## `energyRating` (type: `string`):

Energy efficiency rating

## `councilArea` (type: `string`):

Local council/municipality

## `images` (type: `string`):

Property image URLs array

## `floorplanUrl` (type: `string`):

Floor plan image URL

## `virtualTourUrl` (type: `string`):

3D virtual tour link

## `status` (type: `string`):

Live / Sold / Leased

## `daysOnMarket` (type: `string`):

Listing duration for sold properties

## `soldPrice` (type: `string`):

Final sale price (sold listings only)

## `soldDate` (type: `string`):

Date property sold

## `searchSuburb` (type: `string`):

Suburb slug used to find this listing

## `searchType` (type: `string`):

Listing type used in search

## `scrapedAt` (type: `string`):

ISO timestamp when scraped

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "suburbs": [
        "sydney-nsw-2000"
    ],
    "startUrls": [],
    "propertyTypes": [],
    "maxListings": 50,
    "maxPages": 5,
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "AU"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("haketa/domain-com-au-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "suburbs": ["sydney-nsw-2000"],
    "startUrls": [],
    "propertyTypes": [],
    "maxListings": 50,
    "maxPages": 5,
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "AU",
    },
}

# Run the Actor and wait for it to finish
run = client.actor("haketa/domain-com-au-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "suburbs": [
    "sydney-nsw-2000"
  ],
  "startUrls": [],
  "propertyTypes": [],
  "maxListings": 50,
  "maxPages": 5,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "AU"
  }
}' |
apify call haketa/domain-com-au-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=haketa/domain-com-au-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Domain.com.au Property Scraper",
        "description": "Scrape property listings from Domain.com.au — Australia's second largest real estate platform with 350K+ active listings. Extract price, auction data, price guide, agent info, school catchments, features and inspection times by suburb, listing type and filters.",
        "version": "0.0",
        "x-build-id": "pQmewlZRurBAngZg0"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/haketa~domain-com-au-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-haketa-domain-com-au-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/haketa~domain-com-au-scraper/runs": {
            "post": {
                "operationId": "runs-sync-haketa-domain-com-au-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/haketa~domain-com-au-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-haketa-domain-com-au-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "listingType": {
                        "title": "Listing Type",
                        "enum": [
                            "sale",
                            "rent",
                            "sold"
                        ],
                        "type": "string",
                        "description": "Type of listings to scrape: 'sale' for properties for sale, 'rent' for rental listings, 'sold' for recently sold properties.",
                        "default": "sale"
                    },
                    "suburbs": {
                        "title": "Suburbs",
                        "type": "array",
                        "description": "Suburb slugs to search. Format: 'suburb-state-postcode'. Examples: 'sydney-nsw-2000', 'melbourne-vic-3000', 'brisbane-qld-4000', 'bondi-beach-nsw-2026', 'south-yarra-vic-3141'. See README for full list.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "startUrls": {
                        "title": "Start URLs",
                        "type": "array",
                        "description": "Direct Domain.com.au search URLs or individual listing URLs. Use this instead of suburbs for custom filtered searches. Example: 'https://www.domain.com.au/sale/sydney-nsw-2000/?bedrooms=3-4&price=800000-1500000'",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "propertyTypes": {
                        "title": "Property Types",
                        "type": "array",
                        "description": "Filter by property type. Leave empty for all. Options: 'house', 'apartment', 'townhouse', 'villa', 'land', 'rural', 'unitBlock', 'retire', 'studio'.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "minBedrooms": {
                        "title": "Min Bedrooms",
                        "minimum": 0,
                        "maximum": 10,
                        "type": "integer",
                        "description": "Minimum number of bedrooms. 0 = no filter.",
                        "default": 0
                    },
                    "maxBedrooms": {
                        "title": "Max Bedrooms",
                        "minimum": 0,
                        "maximum": 10,
                        "type": "integer",
                        "description": "Maximum number of bedrooms. 0 = no filter.",
                        "default": 0
                    },
                    "minPrice": {
                        "title": "Min Price",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Minimum price filter (AUD). 0 = no filter.",
                        "default": 0
                    },
                    "maxPrice": {
                        "title": "Max Price",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum price filter (AUD). 0 = no filter.",
                        "default": 0
                    },
                    "auctionOnly": {
                        "title": "Auction Only",
                        "type": "boolean",
                        "description": "Only scrape listings with auction sale method.",
                        "default": false
                    },
                    "scrapeDetails": {
                        "title": "Scrape Detail Pages",
                        "type": "boolean",
                        "description": "Fetch individual listing pages for rich data: description, features, inspection times, school catchments, NBN, floor plans. Slower but much more complete. Enable for production runs.",
                        "default": false
                    },
                    "maxListings": {
                        "title": "Max Listings",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum total listings to scrape. Set 0 for unlimited.",
                        "default": 50
                    },
                    "maxPages": {
                        "title": "Max Pages per Suburb",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum pages per suburb search. Each page returns ~20 listings. Set 0 for unlimited.",
                        "default": 5
                    },
                    "proxyConfiguration": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "Proxy settings. Australian residential proxies strongly recommended — Domain blocks datacenter IPs aggressively."
                    },
                    "requestDelay": {
                        "title": "Request Delay (ms)",
                        "minimum": 0,
                        "maximum": 30000,
                        "type": "integer",
                        "description": "Delay between requests in milliseconds. Keep above 1000 to avoid rate limiting.",
                        "default": 1500
                    },
                    "maxConcurrency": {
                        "title": "Max Concurrency",
                        "minimum": 1,
                        "maximum": 5,
                        "type": "integer",
                        "description": "Parallel requests. Keep low (1-3) — Domain rate limits aggressively.",
                        "default": 1
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
