# Tutti.ch $1.5💰 Swiss Classifieds, URLs & Rich Listing Data (`abotapi/tutti-ch-scraper`) Actor

Scrape listings from tutti.ch across all 23 categories, including vehicles, property, electronics, furniture, fashion, and jobs. Search by keyword, category, city, or use tutti.ch URLs. Returns price, location, canton, seller details, images, and optional GPS, phone, photos, and attributes.

- **URL**: https://apify.com/abotapi/tutti-ch-scraper.md
- **Developed by:** [AbotAPI](https://apify.com/abotapi) (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 $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

## tutti.ch Scraper

Scrape listings from tutti.ch, Switzerland's largest classifieds and marketplace platform, across all 23 categories (vehicles, property, electronics, furniture, fashion, jobs and more). Search by keyword, category and city, or paste tutti.ch URLs directly. Every listing comes back as a clean, flat JSON record with the price as both the formatted string and a numeric value, full location and canton data, seller details and images. Turn on detail mode to also collect GPS coordinates, every photo, the seller account ID, member-since date, phone (when published) and structured attributes.

### Why this scraper

- Two ways to start: keyword / category / city search, or paste any tutti.ch search or category URL (multiple URLs supported).
- Up to 3000 listings per search (100 pages of 30).
- Numeric price field (`priceValue`) alongside the formatted price, so you can filter and sort without parsing strings.
- Rich seller data: name, private vs professional, account ID and member-since date.
- Optional detail mode adds GPS, all image URLs, phone, street and structured properties.
- German, French and Italian editions supported.
- Smart connection handling: Swiss residential by default, automatic region rotation, an optional residential budget cap, and an automatic switch to a cheaper pool when the budget is reached.
- Lean by default: detail fields are off unless you ask for them, keeping running costs low.

### Data you get

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

| Field | Example |
| --- | --- |
| `listingId` | `"00000001"` |
| `title` | `"Sample bike for sale"` |
| `description` | `"Full listing text appears here."` |
| `price` | `"499.-"` |
| `priceValue` | `499` |
| `currency` | `"CHF"` |
| `categoryId` | `"bicycles"` |
| `categoryLabel` | `"Velos"` |
| `parentCategoryId` | `"sportsOutdoors"` |
| `locationName` | `"Sample City"` |
| `postcode` | `"8000"` |
| `canton` | `"ZH"` |
| `cantonName` | `"Zürich"` |
| `latitude` | `47.0000` |
| `longitude` | `8.0000` |
| `street` | `null` |
| `sellerName` | `"Sample Seller"` |
| `sellerType` | `"private"` |
| `sellerAccountId` | `"0000000000000000000"` |
| `memberSince` | `"2020-01-01T00:00:00Z"` |
| `highlighted` | `false` |
| `phone` | `null` |
| `externalUrl` | `null` |
| `imageUrl` | `"https://c.tutti.ch/big/0000000000.jpg"` |
| `imageCount` | `3` |
| `images` | `["https://c.tutti.ch/big/0000000000.jpg"]` |
| `properties` | `[]` |
| `timestamp` | `"2026-01-01T00:00:00+02:00"` |
| `language` | `"de"` |
| `url` | `"https://www.tutti.ch/de/vi/zuerich/sport-outdoor/velos/sample/00000001"` |

Fields marked GPS, all images, phone, street, properties, seller account ID and member-since are only populated when `fetchDetails` is enabled.

### How to use

Basic keyword search:

```json
{
  "mode": "search",
  "keyword": "velo",
  "maxPages": 3,
  "proxy": { "useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"], "apifyProxyCountry": "CH" }
}
````

Category in specific cities:

```json
{
  "mode": "search",
  "category": "vehicles",
  "locations": ["zurich", "bern"],
  "minPrice": 5000,
  "maxPrice": 20000,
  "sortBy": "price_asc",
  "maxPages": 5
}
```

Paste tutti.ch URLs (multiple supported):

```json
{
  "mode": "url",
  "urls": [
    "https://www.tutti.ch/de/q/marktplatz/Ak8CrgIWcA",
    "https://www.tutti.ch/de/q/velos/Ak8CoYmljeWNsZXOUwMDAwA"
  ],
  "maxPages": 4
}
```

Full detail enrichment:

```json
{
  "mode": "search",
  "keyword": "sofa",
  "category": "household",
  "fetchDetails": true,
  "maxListings": 100
}
```

### Input parameters

| Parameter | Type | Default | Description |
| --- | --- | --- | --- |
| `mode` | string | `search` | `search` builds URLs from keyword / category / city. `url` takes tutti.ch links you paste. |
| `keyword` | string | (empty) | Free-text search term. Search mode only. |
| `category` | string | `all` | Restrict to one of 23 tutti.ch categories. Search mode only. |
| `locations` | array | (empty) | City slugs, e.g. `zurich`, `bern`, `geneve`. Search mode only. |
| `minPrice` | integer | (none) | Keep listings priced at or above this value. Search mode only. |
| `maxPrice` | integer | (none) | Keep listings priced at or below this value. Search mode only. |
| `sortBy` | string | `newest` | `newest`, `oldest`, `price_asc`, `price_desc`. Search mode only. |
| `urls` | array | (empty) | tutti.ch search / category URLs. URL mode only. |
| `language` | string | `de` | Site edition: `de`, `fr` or `it`. |
| `fetchDetails` | boolean | `false` | Adds GPS, all images, phone, seller ID, member-since and properties (one extra request per listing). |
| `maxPages` | integer | `1` | Result pages per search (30 listings each, up to 100). |
| `maxListings` | integer | `0` | Total cap across all searches. `0` means no limit. |
| `proxy` | object | Apify Residential CH | Connection settings. |
| `maxResidentialPercent` | integer | `100` | Soft cap on the residential share of the run before switching to a cheaper pool. |
| `residentialBudgetMb` | integer | `0` | Residential bandwidth budget in MB. `0` means no limit. |

### 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
{
  "listingId": "00000001",
  "title": "Sample listing title",
  "description": "Full seller description appears here when fetchDetails is enabled.",
  "price": "499.-",
  "priceValue": 499,
  "currency": "CHF",
  "categoryId": "bicycles",
  "categoryLabel": "Velos",
  "parentCategoryId": "sportsOutdoors",
  "locationName": "Sample City",
  "postcode": "8000",
  "canton": "ZH",
  "cantonName": "Zürich",
  "latitude": 47.0000,
  "longitude": 8.0000,
  "street": null,
  "sellerName": "Sample Seller",
  "sellerType": "private",
  "sellerAccountId": "0000000000000000000",
  "sellerLogoUrl": null,
  "sellerSubscriptionClass": null,
  "sellerBadgeUrl": null,
  "memberSince": "2020-01-01T00:00:00Z",
  "highlighted": false,
  "formattedSource": null,
  "phone": null,
  "externalUrl": null,
  "imageUrl": "https://c.tutti.ch/big/0000000000.jpg",
  "imageCount": 3,
  "images": ["https://c.tutti.ch/big/0000000000.jpg"],
  "properties": [],
  "timestamp": "2026-01-01T00:00:00+02:00",
  "language": "de",
  "url": "https://www.tutti.ch/de/vi/zuerich/sport-outdoor/velos/sample/00000001"
}
```

### Plan requirement

tutti.ch is reachable from Swiss residential connections. For reliable results, run on a paid Apify plan (Starter or above) and keep the proxy set to Apify Residential with country `CH` (the default). Free plans and datacenter connections are usually rejected by the upstream edge and may return zero items. You can also paste your own residential proxy URLs in the proxy field. The `residentialBudgetMb` and `maxResidentialPercent` settings let you cap residential usage and automatically switch to a cheaper pool when the cap is reached.

# Actor input Schema

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

How to start the scrape. 'search' builds listing URLs from a keyword, category and locations. 'url' takes tutti.ch search or category URLs you paste.

## `keyword` (type: `string`):

Free-text search term, e.g. 'velo', 'iphone', 'wohnung'. Leave empty to browse a whole category or the entire marketplace. Search mode only.

## `category` (type: `string`):

Restrict the search to one tutti.ch category. 'All categories' searches the entire marketplace. Search mode only.

## `locations` (type: `array`):

Swiss city slugs to search, e.g. 'zurich', 'bern', 'geneve', 'basel', 'lausanne', 'luzern', 'winterthur'. Use the canonical tutti slug (Geneva = 'geneve', Zürich = 'zurich'). Leave empty to search all of Switzerland. For precise or complex locations, use URL mode instead. Search mode only.

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

Only keep listings priced at or above this amount (applied to the numeric price). Listings with no price are kept. Search mode only.

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

Only keep listings priced at or below this amount (applied to the numeric price). Listings with no price are kept. Search mode only.

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

Result ordering. tutti.ch defaults to newest first. Search mode only.

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

Paste one or more tutti.ch search or category URLs (e.g. https://www.tutti.ch/de/q/marktplatz/Ak8CrgIWcA). Multiple URLs supported. Search-mode fields are ignored. Results continue from the page in the URL onward. URL mode only.

## `language` (type: `string`):

Which tutti.ch language edition to scrape (affects URL path and localized slugs). Applies to search mode and to language inference in output.

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

Adds GPS coordinates, ALL image URLs, seller account ID, member-since date, phone (when published), street address and structured properties. Costs one extra request per listing.

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

How many result pages to walk per search/URL (30 listings per page, tutti.ch allows up to 100 pages = 3000 listings per search).

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

Hard cap on total listings across all searches. 0 means no limit (still bounded by maxPages).

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

tutti.ch is reachable from Swiss residential IPs. Residential proxy with country = CH is strongly recommended. Datacenter and free-tier connections are usually rejected by the upstream edge.

## `maxResidentialPercent` (type: `integer`):

Soft cap on how much of the run may use residential proxy. Once exceeded, the actor automatically downgrades to the cheaper rotating backup pool for remaining requests. 100 = never downgrade on this signal.

## `residentialBudgetMb` (type: `integer`):

Approximate residential bandwidth budget for the run, in megabytes. Once the estimated residential transfer exceeds this, the actor downgrades to the cheaper backup pool. 0 = no budget limit.

## `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",
  "keyword": "velo",
  "category": "all",
  "locations": [
    "zurich"
  ],
  "sortBy": "newest",
  "urls": [
    "https://www.tutti.ch/de/q/velos/Ak8CoYmljeWNsZXOUwMDAwA"
  ],
  "language": "de",
  "fetchDetails": false,
  "maxPages": 1,
  "maxListings": 0,
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "CH"
  },
  "maxResidentialPercent": 100,
  "residentialBudgetMb": 0,
  "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 = {
    "proxy": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "CH"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("abotapi/tutti-ch-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 = { "proxy": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "CH",
    } }

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

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Tutti.ch $1.5💰 Swiss Classifieds, URLs & Rich Listing Data",
        "description": "Scrape listings from tutti.ch across all 23 categories, including vehicles, property, electronics, furniture, fashion, and jobs. Search by keyword, category, city, or use tutti.ch URLs. Returns price, location, canton, seller details, images, and optional GPS, phone, photos, and attributes.",
        "version": "1.0",
        "x-build-id": "94oWAEjMScOuz8HQT"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/abotapi~tutti-ch-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-abotapi-tutti-ch-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~tutti-ch-scraper/runs": {
            "post": {
                "operationId": "runs-sync-abotapi-tutti-ch-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~tutti-ch-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-abotapi-tutti-ch-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": "How to start the scrape. 'search' builds listing URLs from a keyword, category and locations. 'url' takes tutti.ch search or category URLs you paste.",
                        "default": "search"
                    },
                    "keyword": {
                        "title": "Keyword",
                        "type": "string",
                        "description": "Free-text search term, e.g. 'velo', 'iphone', 'wohnung'. Leave empty to browse a whole category or the entire marketplace. Search mode only."
                    },
                    "category": {
                        "title": "Category",
                        "enum": [
                            "all",
                            "realEstate",
                            "vehicles",
                            "clothesAccessories",
                            "household",
                            "phonesNavigation",
                            "computersAccessories",
                            "tvAudio",
                            "sportsOutdoors",
                            "babyChild",
                            "toysHandicrafts",
                            "gardenCraft",
                            "animals",
                            "antiquesArts",
                            "books",
                            "music",
                            "films",
                            "photoVideo",
                            "collectibles",
                            "officeBusiness",
                            "services",
                            "jobs",
                            "ticketsVouchers",
                            "other"
                        ],
                        "type": "string",
                        "description": "Restrict the search to one tutti.ch category. 'All categories' searches the entire marketplace. Search mode only.",
                        "default": "all"
                    },
                    "locations": {
                        "title": "Locations (city slugs)",
                        "type": "array",
                        "description": "Swiss city slugs to search, e.g. 'zurich', 'bern', 'geneve', 'basel', 'lausanne', 'luzern', 'winterthur'. Use the canonical tutti slug (Geneva = 'geneve', Zürich = 'zurich'). Leave empty to search all of Switzerland. For precise or complex locations, use URL mode instead. Search mode only.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "minPrice": {
                        "title": "Min price (CHF)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only keep listings priced at or above this amount (applied to the numeric price). Listings with no price are kept. Search mode only."
                    },
                    "maxPrice": {
                        "title": "Max price (CHF)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only keep listings priced at or below this amount (applied to the numeric price). Listings with no price are kept. Search mode only."
                    },
                    "sortBy": {
                        "title": "Sort by",
                        "enum": [
                            "newest",
                            "oldest",
                            "price_asc",
                            "price_desc"
                        ],
                        "type": "string",
                        "description": "Result ordering. tutti.ch defaults to newest first. Search mode only.",
                        "default": "newest"
                    },
                    "urls": {
                        "title": "tutti.ch URLs",
                        "type": "array",
                        "description": "Paste one or more tutti.ch search or category URLs (e.g. https://www.tutti.ch/de/q/marktplatz/Ak8CrgIWcA). Multiple URLs supported. Search-mode fields are ignored. Results continue from the page in the URL onward. URL mode only.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "language": {
                        "title": "Site language",
                        "enum": [
                            "de",
                            "fr",
                            "it"
                        ],
                        "type": "string",
                        "description": "Which tutti.ch language edition to scrape (affects URL path and localized slugs). Applies to search mode and to language inference in output.",
                        "default": "de"
                    },
                    "fetchDetails": {
                        "title": "Fetch full details (extra cost)",
                        "type": "boolean",
                        "description": "Adds GPS coordinates, ALL image URLs, seller account ID, member-since date, phone (when published), street address and structured properties. Costs one extra request per listing.",
                        "default": false
                    },
                    "maxPages": {
                        "title": "Max pages per search",
                        "minimum": 1,
                        "maximum": 100,
                        "type": "integer",
                        "description": "How many result pages to walk per search/URL (30 listings per page, tutti.ch allows up to 100 pages = 3000 listings per search).",
                        "default": 1
                    },
                    "maxListings": {
                        "title": "Max listings (0 = no limit)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Hard cap on total listings across all searches. 0 means no limit (still bounded by maxPages).",
                        "default": 0
                    },
                    "proxy": {
                        "title": "Proxy",
                        "type": "object",
                        "description": "tutti.ch is reachable from Swiss residential IPs. Residential proxy with country = CH is strongly recommended. Datacenter and free-tier connections are usually rejected by the upstream edge.",
                        "default": {
                            "useApifyProxy": true,
                            "apifyProxyGroups": [
                                "RESIDENTIAL"
                            ],
                            "apifyProxyCountry": "CH"
                        }
                    },
                    "maxResidentialPercent": {
                        "title": "Residential usage cap (%)",
                        "minimum": 0,
                        "maximum": 100,
                        "type": "integer",
                        "description": "Soft cap on how much of the run may use residential proxy. Once exceeded, the actor automatically downgrades to the cheaper rotating backup pool for remaining requests. 100 = never downgrade on this signal.",
                        "default": 100
                    },
                    "residentialBudgetMb": {
                        "title": "Residential traffic budget (MB)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Approximate residential bandwidth budget for the run, in megabytes. Once the estimated residential transfer exceeds this, the actor downgrades to the cheaper backup pool. 0 = no budget limit.",
                        "default": 0
                    },
                    "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
