# Marktplaats.nl $1💰 Listings, Prices, Sellers (`abotapi/marktplaats-nl-scraper`) Actor

From $1/1K. Scrape Marktplaats.nl listings: title, price, condition, location with coordinates, all photos, seller name/type/rating/reviews, shipping, views, and full per-category attributes (cars, bikes, electronics). Search by keyword or paste URLs.

- **URL**: https://apify.com/abotapi/marktplaats-nl-scraper.md
- **Developed by:** [AbotAPI](https://apify.com/abotapi) (community)
- **Categories:** E-commerce, Automation, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.00 / 1,000 listing scrapeds

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

## Marktplaats.nl Scraper

Extract structured listing data from Marktplaats.nl, the largest online marketplace in the Netherlands. Search by keyword and filters or paste listing and result-page URLs, and get clean JSON for every advert: title, price, condition, location with GPS coordinates, every photo, seller name/type/rating/reviews, shipping options, view and favorite counts, and the complete per-category attribute set (cars, bikes, electronics, and more).

### Why This Scraper?

- **Complete field coverage**: 150+ fields per listing including price, condition, full description, all photos, GPS coordinates, seller profile, shipping and per-category attributes.
- **Rich automotive data**: for vehicle adverts it pulls make, model, trim, construction year, mileage, fuel, transmission, body type, power, cylinder capacity, energy label, options and more.
- **Seller insight**: seller name, private vs professional, active-since, rating and number of reviews, and payment method.
- **Two input modes**: build searches from keywords plus filters, or paste any listing or result-page URL.
- **Fast and lightweight**: runs on the free tier with the default datacenter proxy.
- **Result paging with duplicate protection**: collects result pages up to your chosen limit without returning repeats.
- **Optional detail enrichment**: toggle full detail pages on for views, favorites, shipping, bids, reviews and the full description.

### Data You Get

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

| Field | Example |
| --- | --- |
| id | m0000000000 |
| title | Koga elektrische fiets |
| priceNumeric | 399.0 |
| priceType | MIN_BID |
| currency | EUR |
| condition | Zo goed als nieuw |
| brand | Koga |
| description | Nette elektrische fiets, inclusief oplader. |
| location_cityName | Amsterdam |
| location_latitude | 52.3702 |
| location_longitude | 4.8952 |
| sellerName | Jane Doe |
| sellerType | CONSUMER |
| sellerRating | 4.9 |
| sellerReviews | 37 |
| viewCount | 73 |
| savedCount | 3 |
| mileage | 89900 |
| fuelType | Benzine |
| transmission | Automaat |
| imageUrl | https://images.marktplaats.com/api/v1/.../image.jpg |
| url | https://www.marktplaats.nl/v/.../m0000000000-koga |

### How to Use

**1. Keyword search with detail enrichment**

```json
{
  "mode": "search",
  "queries": ["fiets"],
  "fetchDetails": true,
  "maxListings": 50,
  "proxy": { "useApifyProxy": true }
}
````

**2. Browse a category with price and seller filters**

```json
{
  "mode": "search",
  "queries": [""],
  "categoryId": 91,
  "minPrice": 5000,
  "maxPrice": 20000,
  "sellerType": "COMMERCIAL",
  "sortBy": "PRICE",
  "sortOrder": "INCREASING",
  "maxListings": 100,
  "proxy": { "useApifyProxy": true }
}
```

**3. Search near a postcode**

```json
{
  "mode": "search",
  "queries": ["bankstel"],
  "postcode": "1011AB",
  "distanceMeters": 15000,
  "maxListings": 40,
  "proxy": { "useApifyProxy": true }
}
```

**4. URL mode (listing or result pages)**

```json
{
  "mode": "url",
  "urls": [
    "https://www.marktplaats.nl/l/auto-s/",
    "https://www.marktplaats.nl/v/fietsen-en-brommers/fietsen-dames-damesfietsen/m0000000000-koga"
  ],
  "fetchDetails": true,
  "maxListings": 60,
  "proxy": { "useApifyProxy": true }
}
```

### Input Parameters

| Parameter | Type | Description |
| --- | --- | --- |
| mode | select | `search` (keyword + filters) or `url` (paste URLs). |
| queries | array | One or more search keywords. Empty browses a whole category. |
| categoryId | integer | Numeric category id to restrict results (e.g. 91 = Auto's). |
| sortBy | select | `OPTIMIZED`, `SORT_INDEX`, `PRICE`, `DATE`. |
| sortOrder | select | `DECREASING` or `INCREASING`. |
| minPrice / maxPrice | integer | Keep listings within this euro range. |
| sellerType | select | `any`, `CONSUMER`, or `COMMERCIAL`. |
| postcode | string | Dutch postcode to centre a distance search on. |
| distanceMeters | integer | Radius in meters around the postcode. |
| urls | array | Listing or result-page URLs (URL mode). |
| fetchDetails | boolean | Visit each detail page for views, shipping, reviews, full description. |
| maxPages | integer | Optional pagination safety-stop per search; does NOT cap the run, empty/0 = unlimited, defers to maxListings. |
| maxListings | integer | THE run cap: total listings to return; default 20, 0 = unlimited. |
| proxy | object | Proxy configuration; Apify datacenter proxy by default (works on the free tier). |
| residentialCountries | array | Countries rotated through when the residential tier is used as a fallback. Default `NL, BE, DE, FR, GB`. |
| maxResidentialRequests | integer | Cap on residential requests per run, to control cost; the run auto-downgrades to datacenter once spent. Default `200`. `0` disables residential. |
| backupProxyUrl | string | Optional last-resort proxy gateway URL. Leave blank to use the built-in default. |
| mcpConnectors | array | Optional MCP connectors to pipe a copy of each listing into (Notion, Linear, Airtable, Apify). Authorize one under Apify → Settings → Integrations, then pick it here. Leave empty to skip. |
| notionParentPageUrl | string | Notion only: URL (or id) of the page under which listing pages are created. Required to enable the Notion export; ignored by other connectors. |
| maxNotifyListings | integer | Cap on items written to each connector per run. Does not affect the dataset. Default `50`. |

### Output Example

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

```json
{
  "id": "m0000000000",
  "title": "Koga elektrische fiets",
  "url": "https://www.marktplaats.nl/v/fietsen-en-brommers/fietsen-dames-damesfietsen/m0000000000-koga",
  "priceNumeric": 399.0,
  "priceType": "MIN_BID",
  "currency": "EUR",
  "condition": "Zo goed als nieuw",
  "brand": "Koga",
  "description": "Nette elektrische fiets, inclusief oplader en fietstassen.",
  "categoryId": 447,
  "category": { "id": 447, "name": "Damesfietsen", "parentName": "Fietsen en Brommers" },
  "location_cityName": "Amsterdam",
  "location_latitude": 52.3702,
  "location_longitude": 4.8952,
  "imageUrl": "https://images.marktplaats.com/api/v1/listing/images/0000.jpg",
  "image_urls": ["https://images.marktplaats.com/api/v1/listing/images/0000.jpg"],
  "attributes": { "condition": "Zo goed als nieuw", "brand": "Koga", "delivery": "Ophalen of Verzenden" },
  "seller": {
    "id": 0,
    "name": "Jane Doe",
    "type": "CONSUMER",
    "activeSince": "1 jaar",
    "paymentMethod": "ideal"
  },
  "sellerName": "Jane Doe",
  "sellerType": "CONSUMER",
  "sellerRating": 4.9,
  "sellerReviews": 37,
  "viewCount": 73,
  "savedCount": 3,
  "shipping": { "method": "DELIVERY", "carrierName": "PostNL", "price": "€ 5,49" },
  "date": "Vandaag",
  "scrapedAt": "2026-01-01T00:00:00+00:00"
}
```

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

Optionally pipe the scraped listings 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 listing — 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 listings should be created.
4. Use `maxNotifyListings` to cap how many listings are written to each connector per run.

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

### Plan Requirement

Runs on any Apify plan, including the free tier, using the default Apify datacenter proxy. Heavier runs with detail enrichment benefit from a paid plan for higher concurrency and proxy throughput.

### Proxy policy

The scraper uses a tiered, cost-first proxy strategy:

- **Datacenter (default).** Datacenter is the default and works on every plan, including the free tier.
- **Residential (optional, budgeted fallback).** Selecting the residential proxy group is bounded by `maxResidentialRequests`. Because residential traffic is billed at a higher rate, the run **falls back to datacenter** once that budget is spent.
- **Backup gateway (last resort).** If the Apify proxy is unavailable on your plan, the run uses a backup gateway (override with `backupProxyUrl`) instead of returning nothing.

Run logs reference only the abstract tier (datacenter / residential / backup) and never expose any geography.

# Actor input Schema

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

Choose Search to build queries from keywords/filters, or URL to scrape pasted listing or result-page URLs directly.

## `queries` (type: `array`):

One or more keywords to search for, e.g. "fiets", "iphone 15". Leave empty to browse a whole category.

## `categoryId` (type: `integer`):

Optional numeric Marktplaats category id to restrict results (e.g. 91 = Auto's, 447 = Fietsen). Find it in a category URL or leave empty for all categories.

## `sortBy` (type: `string`):

Result ordering.

## `sortOrder` (type: `string`):

Direction for the selected sort field. Descending shows highest/newest first; ascending shows lowest/oldest first.

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

Only keep listings priced at or above this amount (euros).

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

Only keep listings priced at or below this amount (euros).

## `sellerType` (type: `string`):

Restrict to private (consumer) sellers, professional sellers, or both.

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

Dutch postcode to centre a distance search on, e.g. "1011AB". Used together with Distance.

## `distanceMeters` (type: `integer`):

Radius in meters around the postcode to search within (e.g. 25000 = 25 km).

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

Paste Marktplaats listing URLs (/v/.../mNNNN-slug) or result-page URLs (/q/<kw>/, /l/<category>/). In URL mode the filter fields above are ignored.

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

Visit each listing page for view/favorite counts, shipping options, bids, seller reviews/rating and the full HTML description. Adds one request per listing.

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

Optional safety stop on how many result pages to collect per keyword/category (30 listings per page). This does NOT cap the run (leave empty or 0 for unlimited pages). The run size is controlled by Max listings, which this field defers to. Only set a value if you want to hard-stop paging early.

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

THE cap on this run: total number of listings to return across all searches. Defaults to 20. Set 0 for unlimited.

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

Proxy used for all requests. Apify datacenter proxy is enabled by default and works on the free tier.

## `residentialCountries` (type: `array`):

Country codes rotated through when the residential proxy tier is used as a fallback. Leave default unless you have a reason to pin specific regions.

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

Caps how many requests may use the residential proxy in one run, to control cost. Once spent, the run auto-downgrades to the cheaper datacenter tier. Set 0 to disable residential entirely.

## `backupProxyUrl` (type: `string`):

Optional. A full proxy URL used as a last-resort failover when the Apify proxy is unavailable (for example on a restricted plan). Leave blank to use the built-in default gateway.

## `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 listing (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 listing 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",
  "queries": [
    "fiets"
  ],
  "sortBy": "OPTIMIZED",
  "sortOrder": "DECREASING",
  "sellerType": "any",
  "urls": [],
  "fetchDetails": true,
  "maxListings": 20,
  "proxy": {
    "useApifyProxy": true
  },
  "residentialCountries": [
    "NL",
    "BE",
    "DE",
    "FR",
    "GB"
  ],
  "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 = {
    "queries": [
        "fiets"
    ],
    "proxy": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("abotapi/marktplaats-nl-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 = {
    "queries": ["fiets"],
    "proxy": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("abotapi/marktplaats-nl-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 '{
  "queries": [
    "fiets"
  ],
  "proxy": {
    "useApifyProxy": true
  }
}' |
apify call abotapi/marktplaats-nl-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Marktplaats.nl $1💰 Listings, Prices, Sellers",
        "description": "From $1/1K. Scrape Marktplaats.nl listings: title, price, condition, location with coordinates, all photos, seller name/type/rating/reviews, shipping, views, and full per-category attributes (cars, bikes, electronics). Search by keyword or paste URLs.",
        "version": "1.0",
        "x-build-id": "m6WcR6oBHtwrRL5jd"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/abotapi~marktplaats-nl-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-abotapi-marktplaats-nl-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~marktplaats-nl-scraper/runs": {
            "post": {
                "operationId": "runs-sync-abotapi-marktplaats-nl-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~marktplaats-nl-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-abotapi-marktplaats-nl-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": "Mode",
                        "enum": [
                            "search",
                            "url"
                        ],
                        "type": "string",
                        "description": "Choose Search to build queries from keywords/filters, or URL to scrape pasted listing or result-page URLs directly.",
                        "default": "search"
                    },
                    "queries": {
                        "title": "Search keywords",
                        "type": "array",
                        "description": "One or more keywords to search for, e.g. \"fiets\", \"iphone 15\". Leave empty to browse a whole category.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "categoryId": {
                        "title": "Category ID",
                        "type": "integer",
                        "description": "Optional numeric Marktplaats category id to restrict results (e.g. 91 = Auto's, 447 = Fietsen). Find it in a category URL or leave empty for all categories."
                    },
                    "sortBy": {
                        "title": "Sort by",
                        "enum": [
                            "OPTIMIZED",
                            "SORT_INDEX",
                            "PRICE",
                            "DATE"
                        ],
                        "type": "string",
                        "description": "Result ordering.",
                        "default": "OPTIMIZED"
                    },
                    "sortOrder": {
                        "title": "Sort order",
                        "enum": [
                            "DECREASING",
                            "INCREASING"
                        ],
                        "type": "string",
                        "description": "Direction for the selected sort field. Descending shows highest/newest first; ascending shows lowest/oldest first.",
                        "default": "DECREASING"
                    },
                    "minPrice": {
                        "title": "Min price (EUR)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only keep listings priced at or above this amount (euros)."
                    },
                    "maxPrice": {
                        "title": "Max price (EUR)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only keep listings priced at or below this amount (euros)."
                    },
                    "sellerType": {
                        "title": "Seller type",
                        "enum": [
                            "any",
                            "CONSUMER",
                            "COMMERCIAL"
                        ],
                        "type": "string",
                        "description": "Restrict to private (consumer) sellers, professional sellers, or both.",
                        "default": "any"
                    },
                    "postcode": {
                        "title": "Postcode",
                        "type": "string",
                        "description": "Dutch postcode to centre a distance search on, e.g. \"1011AB\". Used together with Distance."
                    },
                    "distanceMeters": {
                        "title": "Distance (meters)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Radius in meters around the postcode to search within (e.g. 25000 = 25 km)."
                    },
                    "urls": {
                        "title": "Listing or result-page URLs",
                        "type": "array",
                        "description": "Paste Marktplaats listing URLs (/v/.../mNNNN-slug) or result-page URLs (/q/<kw>/, /l/<category>/). In URL mode the filter fields above are ignored.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "fetchDetails": {
                        "title": "Fetch full detail pages",
                        "type": "boolean",
                        "description": "Visit each listing page for view/favorite counts, shipping options, bids, seller reviews/rating and the full HTML description. Adds one request per listing.",
                        "default": true
                    },
                    "maxPages": {
                        "title": "Max pages per search",
                        "minimum": 0,
                        "maximum": 200,
                        "type": "integer",
                        "description": "Optional safety stop on how many result pages to collect per keyword/category (30 listings per page). This does NOT cap the run (leave empty or 0 for unlimited pages). The run size is controlled by Max listings, which this field defers to. Only set a value if you want to hard-stop paging early."
                    },
                    "maxListings": {
                        "title": "Max listings",
                        "minimum": 0,
                        "type": "integer",
                        "description": "THE cap on this run: total number of listings to return across all searches. Defaults to 20. Set 0 for unlimited.",
                        "default": 20
                    },
                    "proxy": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Proxy used for all requests. Apify datacenter proxy is enabled by default and works on the free tier.",
                        "default": {
                            "useApifyProxy": true
                        }
                    },
                    "residentialCountries": {
                        "title": "Residential fallback countries",
                        "type": "array",
                        "description": "Country codes rotated through when the residential proxy tier is used as a fallback. Leave default unless you have a reason to pin specific regions.",
                        "default": [
                            "NL",
                            "BE",
                            "DE",
                            "FR",
                            "GB"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxResidentialRequests": {
                        "title": "Residential request budget",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Caps how many requests may use the residential proxy in one run, to control cost. Once spent, the run auto-downgrades to the cheaper datacenter tier. Set 0 to disable residential entirely.",
                        "default": 200
                    },
                    "backupProxyUrl": {
                        "title": "Backup proxy URL",
                        "type": "string",
                        "description": "Optional. A full proxy URL used as a last-resort failover when the Apify proxy is unavailable (for example on a restricted plan). Leave blank to use the built-in default gateway."
                    },
                    "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 listing (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 listing 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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
