# 591 TW $1💰 Keyword Search, URLs & Enriched Output (`abotapi/591-com-tw-scraper`) Actor

From $1/1K. Extract property listings from 591.com.tw, Taiwan’s largest real estate marketplace. Search by city or use 591 URLs. Covers rentals, sales, land, and commercial properties. Returns 50–60 fields including price, area, GPS coordinates, nearby transit, and agent/owner contact details.

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

## Pricing

from $1.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

## 591.com.tw Taiwan Property Scraper

Collect structured property listings from 591.com.tw, Taiwan's largest property marketplace, across four sections: Rent (租屋), Sale (買屋, resale and new homes), Land (土地), and Commercial (店面, 辦公, 廠房). Search by city and county with price, area, and rental type filters, or paste any 591 list URL. Every record is a clean, flat JSON object with 50 to 60 populated fields, including agent and owner contact details, GPS coordinates, and nearby transit with walking distances.

### Why this scraper

- Four sections in one actor: Rent, Sale, Land, and Commercial, each with the section's native fields.
- 50 to 60 fields per listing, more than any comparable 591 actor, including contact name, mobile, phone, LINE and email, plus full GPS, nearby bus and metro stops with distances, lease rules, deposit, fees, and the full high resolution photo gallery.
- Two ways to run: pick a section, regions, and filters, or paste 591 list URLs straight from your browser.
- Forward auto pagination across every result page, with a hard total cap so runs stay predictable.
- Low cost: runs on the cheapest datacenter connection by default. A residential tier with Taiwan first rotation and a backup pool engages automatically only if datacenter is ever throttled, and a request budget keeps residential spend under control.
- Fast and reliable: lightweight requests, no heavy page rendering, concurrent detail fetching with per record output so partial runs still keep their data.

### Data you get

> Sample shape: values are illustrative placeholders, not from a live listing.

| Field | Example |
| --- | --- |
| id | 21000001 |
| section | rent |
| listingType | rent |
| url | https://rent.591.com.tw/21000001 |
| title | Sample Listing Title |
| price | 18000 |
| priceText | 18,000 |
| priceUnit | 元/月 |
| kindName | 獨立套房 |
| room | 2房 |
| area | 18 |
| floor | 5F |
| regionName | Taipei City |
| sectionName | 中山區 |
| address | 中山區 Sample Road |
| latitude | 25.0000 |
| longitude | 121.5000 |
| communityName | Sample Community |
| deposit | 押金二個月 |
| leaseMinTerm | 最短租期一年 |
| rule | 此房屋男女皆可租住 |
| facilities | ["冰箱","洗衣機","冷氣","網路"] |
| nearbyTransit | [{"type":"subway","name":"Sample Station","distance":300}] |
| tags | ["新上架","可開伙"] |
| photoCount | 12 |
| coverPhoto | https://img1.591.com.tw/house/0000/000000000.jpg |
| photos | ["https://img1.591.com.tw/house/0000/000000001.jpg"] |
| browseCount | 120 |
| postedAt | 此房屋在3天前發佈 |
| contactName | Agent Name |
| contactRole | 仲介 |
| contactMobile | 0900000000 |
| contactPhone | 0200000000 |
| contactEmail | agent@example.com |
| contactLine | sample-line-id |
| isAgent | true |
| scrapedAt | 2026-01-01T00:00:00.000Z |

Sale, Land, and Commercial records add section specific fields such as unitPrice, mainArea, shape, houseAge, direction, roomCount, hallCount, bathroomCount, and balconyCount where the section publishes them.

### How to use

Pick a section, regions, and filters:

```json
{
  "mode": "search",
  "section": "rent",
  "regions": ["taipei-city", "new-taipei-city"],
  "minPrice": 10000,
  "maxPrice": 25000,
  "fetchDetails": true,
  "maxPages": 5,
  "maxListings": 200
}
````

Search resale and new homes for sale:

```json
{
  "mode": "search",
  "section": "sale",
  "regions": ["taichung-city"],
  "minArea": 20,
  "maxPages": 10,
  "maxListings": 300
}
```

Filter rentals by type (whole home, suite, shared suite, single room, parking):

```json
{
  "mode": "search",
  "section": "rent",
  "regions": ["kaohsiung-city"],
  "rentKind": "whole",
  "fetchDetails": true,
  "maxPages": 3
}
```

Paste 591 list URLs (multi URL supported, filters above are ignored):

```json
{
  "mode": "url",
  "urls": [
    "https://rent.591.com.tw/list?region=1&kind=2",
    "https://land.591.com.tw/list?type=2&region=1&kind=11"
  ],
  "maxPages": 5,
  "maxListings": 150
}
```

### Input parameters

| Parameter | Type | Default | Description |
| --- | --- | --- | --- |
| mode | string | search | "search" (pick section, regions, filters) or "url" (paste list URLs). |
| section | string | rent | rent, sale, land, or commercial. Search mode only. |
| regions | array | \["taipei-city"] | One or more Taiwan cities or counties. Search mode only. |
| rentKind | string | any | Rental type: whole, suite, shared-suite, single-room, parking. Rent section only. |
| minPrice / maxPrice | integer | none | Price bounds. Rent is TWD per month; Sale, Land, Commercial are in 萬 total. |
| minArea / maxArea | integer | none | Floor area bounds in 坪 (ping). |
| urls | array | none | 591 list URLs. URL mode only. Pagination starts at the page in the URL and walks forward. |
| fetchDetails | boolean | true | Visit each listing's detail page for the full field set. Turn off for a faster, cheaper list level run. |
| maxPages | integer | 3 | Result pages to walk per region or URL (about 30 listings per page). |
| maxListings | integer | 0 | Hard total cap. 0 means unlimited. |
| proxy | object | Apify Datacenter | Connection configuration. Datacenter is the low cost default. |
| maxResidentialRequests | integer | 200 | Caps requests on the residential fallback tier. 0 disables residential entirely. |

### Send results into your apps (MCP connectors)

Optionally pipe the scraped results into the apps you already use, via Model Context Protocol (MCP) connectors. This is an extra delivery step **after** the scrape — the Apify dataset is never changed.

**What gets written to the connector:** a condensed, human-readable **summary** of each record — not the full JSON. Each item becomes one entry with a **title** and its key fields flattened to plain text. The **complete record always stays in the Apify dataset**.

1. Authorize a connector once under **Apify → Settings → Integrations** (Notion, Linear, Airtable, or Apify).
2. Select it in the **"Pipe results into your apps"** input field. (If the picker is empty, you haven't authorized a connector yet.)
3. For **Notion**, also set `notionParentPageUrl` to the page where items should be created.

The connection is mediated by Apify's MCP proxy, so this actor never sees your third-party credentials. Leave the field empty to skip.

### Output example

> Sample shape: values are illustrative placeholders, not from a live listing.

```json
{
  "id": 21000001,
  "section": "rent",
  "listingType": "rent",
  "url": "https://rent.591.com.tw/21000001",
  "title": "Sample Listing Title",
  "description": "Full listing description appears here when fetchDetails is on.",
  "price": 18000,
  "priceUnit": "元/月",
  "deposit": "押金二個月",
  "kindName": "獨立套房",
  "room": "2房",
  "area": 18,
  "floor": "5F",
  "regionName": "Taipei City",
  "sectionName": "中山區",
  "address": "中山區 Sample Road",
  "latitude": 25.0000,
  "longitude": 121.5000,
  "leaseMinTerm": "最短租期一年",
  "rule": "此房屋男女皆可租住",
  "facilities": ["冰箱", "洗衣機", "冷氣", "網路"],
  "nearbyTransit": [{ "type": "subway", "name": "Sample Station", "distance": 300 }],
  "photoCount": 12,
  "coverPhoto": "https://img1.591.com.tw/house/0000/000000000.jpg",
  "contactName": "Agent Name",
  "contactRole": "仲介",
  "contactMobile": "0900000000",
  "contactEmail": "agent@example.com",
  "isAgent": true,
  "scrapedAt": "2026-01-01T00:00:00.000Z"
}
```

### Plan requirement

This actor runs on any Apify plan, including the free plan, because it defaults to the datacenter connection. For the highest reliability on large runs, a paid plan with residential proxy is recommended; the actor uses it only as an automatic fallback (Taiwan first), capped by the residential request budget, and switches back to datacenter once the connection is healthy again. If a run returns zero results on the free plan, enable residential proxy and try again.

# Actor input Schema

## `mode` (type: `string`):

Search mode = pick a property section + regions + filters below. URL mode = paste 591 list URLs you already refined in a browser.

## `section` (type: `string`):

Which 591 marketplace to scrape. Rent = 租屋 (rentals). Sale = 中古屋/新建案 (resale + new homes). Land = 土地 (plots). Commercial = 店面/辦公/廠房 (shops, offices, factories).

## `regions` (type: `array`):

One or more Taiwan cities/counties to search. Maps to 591 region codes automatically.

## `rentKind` (type: `string`):

Only applies when Section = Rent. Narrows by dwelling type.

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

Minimum price. Rent = TWD/month, Sale/Land/Commercial = TWD total (萬 are converted automatically). Leave blank for no minimum.

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

Maximum price. Same unit as Min price. Leave blank for no maximum.

## `minArea` (type: `integer`):

Minimum floor area in 坪 (ping, 1 ping ≈ 3.3 m²). Leave blank for no minimum.

## `maxArea` (type: `integer`):

Maximum floor area in 坪 (ping). Leave blank for no maximum.

## `urls` (type: `array`):

One or more 591 list URLs. Rent, sale, land, and commercial list pages are all supported (for example a rent.591.com.tw/list page, or a sale, land, or commercial list page copied from your browser). Multi-URL supported. Filter fields above are ignored in URL mode. Pagination starts at the page in the URL and walks forward.

## `fetchDetails` (type: `boolean`):

Adds the rich detail fields: full description, agent/owner name + mobile + phone + LINE, lease rules, deposit, fees, nearby transit (bus/MRT) with distances, full high-res photo gallery, and certificate info. Turn OFF for a faster, cheaper run with the list-level fields only (title, price, area, layout, address, primary photos).

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

The main hard cap across the whole run. Default 20. Set 0 for unlimited (then the run is bounded only by Max pages). 591 returns ~30-50 listings per page.

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

Safety bound on how many result pages to walk per region (or per URL). Defaults to the maximum; a run normally stops earlier once Max total listings is reached. Only raise relevance if you set Max total listings to 0 (unlimited).

## `proxy` (type: `object`):

Default: Apify Datacenter (free-tier friendly, lowest cost). For maximum reliability you may select Residential; the actor rotates exit IPs and countries (Taiwan first) and falls back to a backup pool if needed.

## `maxResidentialRequests` (type: `integer`):

Caps how many requests may use the (expensive) Residential tier during automatic fallback. 0 = never use residential (datacenter + backup only). Default 200. Has no effect if you do not enable residential and datacenter keeps working.

## `mcpConnectors` (type: `array`):

Optionally send the scraped results into the apps you already use, via Model Context Protocol (MCP) connectors. Authorize a connector once under Apify → Settings → Integrations, then select it here. The connector receives a condensed, human-readable summary per item (title + key fields), not the full JSON — the complete record stays in the dataset. Leave empty to skip. Supported: Notion (https://mcp.notion.com/mcp), Linear (https://mcp.linear.app/sse), Airtable (https://mcp.airtable.com/mcp), Apify (https://mcp.apify.com).

## `notionParentPageUrl` (type: `string`):

URL (or id) of the Notion page under which item pages are created. Required to enable the Notion export; ignored by other connectors.

## `maxNotifyListings` (type: `integer`):

Cap on items written to each connector per run. Does not affect the dataset.

## Actor input object example

```json
{
  "mode": "search",
  "section": "rent",
  "regions": [
    "taipei-city"
  ],
  "rentKind": "any",
  "urls": [
    "https://rent.591.com.tw/list?region=1"
  ],
  "fetchDetails": true,
  "maxListings": 20,
  "maxPages": 500,
  "proxy": {
    "useApifyProxy": true
  },
  "maxResidentialRequests": 200,
  "maxNotifyListings": 50
}
```

# Actor output Schema

## `overview` (type: `string`):

No description

# 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 = {
    "regions": [
        "taipei-city"
    ],
    "urls": [
        "https://rent.591.com.tw/list?region=1"
    ],
    "proxy": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("abotapi/591-com-tw-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 = {
    "regions": ["taipei-city"],
    "urls": ["https://rent.591.com.tw/list?region=1"],
    "proxy": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("abotapi/591-com-tw-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 '{
  "regions": [
    "taipei-city"
  ],
  "urls": [
    "https://rent.591.com.tw/list?region=1"
  ],
  "proxy": {
    "useApifyProxy": true
  }
}' |
apify call abotapi/591-com-tw-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "591 TW $1💰 Keyword Search, URLs & Enriched Output",
        "description": "From $1/1K. Extract property listings from 591.com.tw, Taiwan’s largest real estate marketplace. Search by city or use 591 URLs. Covers rentals, sales, land, and commercial properties. Returns 50–60 fields including price, area, GPS coordinates, nearby transit, and agent/owner contact details.",
        "version": "1.0",
        "x-build-id": "TtyRydajCHBLf4Ldw"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/abotapi~591-com-tw-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-abotapi-591-com-tw-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/abotapi~591-com-tw-scraper/runs": {
            "post": {
                "operationId": "runs-sync-abotapi-591-com-tw-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/abotapi~591-com-tw-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-abotapi-591-com-tw-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",
                "required": [
                    "mode"
                ],
                "properties": {
                    "mode": {
                        "title": "Search mode",
                        "enum": [
                            "search",
                            "url"
                        ],
                        "type": "string",
                        "description": "Search mode = pick a property section + regions + filters below. URL mode = paste 591 list URLs you already refined in a browser.",
                        "default": "search"
                    },
                    "section": {
                        "title": "Property section",
                        "enum": [
                            "rent",
                            "sale",
                            "land",
                            "commercial"
                        ],
                        "type": "string",
                        "description": "Which 591 marketplace to scrape. Rent = 租屋 (rentals). Sale = 中古屋/新建案 (resale + new homes). Land = 土地 (plots). Commercial = 店面/辦公/廠房 (shops, offices, factories).",
                        "default": "rent"
                    },
                    "regions": {
                        "title": "Regions (cities / counties)",
                        "type": "array",
                        "description": "One or more Taiwan cities/counties to search. Maps to 591 region codes automatically.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "taipei-city",
                                "keelung-city",
                                "new-taipei-city",
                                "hsinchu-city",
                                "hsinchu-county",
                                "taoyuan-city",
                                "miaoli-county",
                                "taichung-city",
                                "changhua-county",
                                "nantou-county",
                                "chiayi-city",
                                "chiayi-county",
                                "yunlin-county",
                                "tainan-city",
                                "kaohsiung-city",
                                "pingtung-county",
                                "yilan-county",
                                "taitung-county",
                                "hualien-county",
                                "penghu-county",
                                "kinmen-county"
                            ],
                            "enumTitles": [
                                "Taipei City / 台北市",
                                "Keelung City / 基隆市",
                                "New Taipei City / 新北市",
                                "Hsinchu City / 新竹市",
                                "Hsinchu County / 新竹縣",
                                "Taoyuan City / 桃園市",
                                "Miaoli County / 苗栗縣",
                                "Taichung City / 台中市",
                                "Changhua County / 彰化縣",
                                "Nantou County / 南投縣",
                                "Chiayi City / 嘉義市",
                                "Chiayi County / 嘉義縣",
                                "Yunlin County / 雲林縣",
                                "Tainan City / 台南市",
                                "Kaohsiung City / 高雄市",
                                "Pingtung County / 屏東縣",
                                "Yilan County / 宜蘭縣",
                                "Taitung County / 台東縣",
                                "Hualien County / 花蓮縣",
                                "Penghu County / 澎湖縣",
                                "Kinmen County / 金門縣"
                            ]
                        }
                    },
                    "rentKind": {
                        "title": "Rental type (Rent section only)",
                        "enum": [
                            "any",
                            "whole",
                            "suite",
                            "shared-suite",
                            "single-room",
                            "parking"
                        ],
                        "type": "string",
                        "description": "Only applies when Section = Rent. Narrows by dwelling type.",
                        "default": "any"
                    },
                    "minPrice": {
                        "title": "Min price",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Minimum price. Rent = TWD/month, Sale/Land/Commercial = TWD total (萬 are converted automatically). Leave blank for no minimum."
                    },
                    "maxPrice": {
                        "title": "Max price",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum price. Same unit as Min price. Leave blank for no maximum."
                    },
                    "minArea": {
                        "title": "Min area (坪 / ping)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Minimum floor area in 坪 (ping, 1 ping ≈ 3.3 m²). Leave blank for no minimum."
                    },
                    "maxArea": {
                        "title": "Max area (坪 / ping)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum floor area in 坪 (ping). Leave blank for no maximum."
                    },
                    "urls": {
                        "title": "591 list URLs",
                        "type": "array",
                        "description": "One or more 591 list URLs. Rent, sale, land, and commercial list pages are all supported (for example a rent.591.com.tw/list page, or a sale, land, or commercial list page copied from your browser). Multi-URL supported. Filter fields above are ignored in URL mode. Pagination starts at the page in the URL and walks forward.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "fetchDetails": {
                        "title": "Visit each listing's detail page",
                        "type": "boolean",
                        "description": "Adds the rich detail fields: full description, agent/owner name + mobile + phone + LINE, lease rules, deposit, fees, nearby transit (bus/MRT) with distances, full high-res photo gallery, and certificate info. Turn OFF for a faster, cheaper run with the list-level fields only (title, price, area, layout, address, primary photos).",
                        "default": true
                    },
                    "maxListings": {
                        "title": "Max total listings",
                        "minimum": 0,
                        "type": "integer",
                        "description": "The main hard cap across the whole run. Default 20. Set 0 for unlimited (then the run is bounded only by Max pages). 591 returns ~30-50 listings per page.",
                        "default": 20
                    },
                    "maxPages": {
                        "title": "Max pages per region / URL",
                        "minimum": 1,
                        "maximum": 500,
                        "type": "integer",
                        "description": "Safety bound on how many result pages to walk per region (or per URL). Defaults to the maximum; a run normally stops earlier once Max total listings is reached. Only raise relevance if you set Max total listings to 0 (unlimited).",
                        "default": 500
                    },
                    "proxy": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Default: Apify Datacenter (free-tier friendly, lowest cost). For maximum reliability you may select Residential; the actor rotates exit IPs and countries (Taiwan first) and falls back to a backup pool if needed."
                    },
                    "maxResidentialRequests": {
                        "title": "Residential request budget",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Caps how many requests may use the (expensive) Residential tier during automatic fallback. 0 = never use residential (datacenter + backup only). Default 200. Has no effect if you do not enable residential and datacenter keeps working.",
                        "default": 200
                    },
                    "mcpConnectors": {
                        "title": "Pipe results into your apps (optional)",
                        "type": "array",
                        "description": "Optionally send the scraped results into the apps you already use, via Model Context Protocol (MCP) connectors. Authorize a connector once under Apify → Settings → Integrations, then select it here. The connector receives a condensed, human-readable summary per item (title + key fields), not the full JSON — the complete record stays in the dataset. Leave empty to skip. Supported: Notion (https://mcp.notion.com/mcp), Linear (https://mcp.linear.app/sse), Airtable (https://mcp.airtable.com/mcp), Apify (https://mcp.apify.com)."
                    },
                    "notionParentPageUrl": {
                        "title": "Notion parent page (Notion connector only)",
                        "type": "string",
                        "description": "URL (or id) of the Notion page under which item pages are created. Required to enable the Notion export; ignored by other connectors."
                    },
                    "maxNotifyListings": {
                        "title": "Max items to export per connector",
                        "minimum": 1,
                        "maximum": 1000,
                        "type": "integer",
                        "description": "Cap on items written to each connector per run. Does not affect the dataset.",
                        "default": 50
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
