# 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:** [Abot API](https://apify.com/abotapi) (community)
- **Categories:** Real estate, Developer tools, Automation
- **Stats:** 13 total users, 3 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/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
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.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — 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: results from a pasted URL are not price filtered. |
| `maxPrice` | integer | (none) | Keep listings priced at or below this value. Search mode only: results from a pasted URL are not price filtered. |
| `sortBy` | string | `newest` | `newest`, `oldest`, `price_asc`, `price_desc`. Applies in **both** search mode and URL mode: in URL mode the pasted page is fetched exactly as given and every following result page is requested with this ordering. |
| `urls` | array | (empty) | tutti.ch search / category URLs. URL mode only. The search-mode fields above and `language` are ignored; `sortBy` still applies from the page after the pasted one onward. |
| `language` | string | `de` | Site edition: `de`, `fr` or `it`. Search mode only: in URL mode the language comes from the pasted URL and the page itself. |
| `fetchDetails` | boolean | `false` | Adds GPS, all images, phone, seller ID, member-since and properties (one extra request per listing). |
| `maxPages` | integer | (none) | Result pages per search (30 listings each). Leave empty to walk every result page (tutti.ch itself stops around page 100). |
| `maxListings` | integer | `20` | Total cap across all searches. `0` means no limit (still bounded by maxPages). |
| `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. |
| `resumeFromRunId` | string | (none) | Previous run ID or dataset ID to continue a full-catalogue walk across separate runs. Already-collected listings (matched by listing id) are skipped. |

#### Resuming a full-catalogue walk

For an unbounded pull (`maxPages` left empty, `maxListings: 0`), two things protect a long run:

- **`resumeFromRunId`** lets you continue in a brand-new run: paste the ID of a previous run (or its dataset), and this run skips every `listingId` already saved there, appending only new listings.
- A **checkpoint** is saved automatically as the run progresses. If the run is interrupted by an Apify platform migration or you click **Resurrect** on a failed run, it picks back up from where it left off in the *same* run, without re-saving (or re-charging for) listings it already collected. No input is needed for this; it's automatic.

### 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: results from a pasted URL in URL mode are not price filtered.

## `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: results from a pasted URL in URL mode are not price filtered.

## `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. The search-mode fields above (keyword, category, locations, min price, max price) are ignored here, and so is Site language, because a pasted URL carries its own. The Sorting field below does still apply: it sets the ordering used from the page after the pasted one onward. Results continue from the page in the URL onward. URL mode only.

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

Result ordering. tutti.ch defaults to newest first. Applies in BOTH search mode and URL mode. In URL mode the page you pasted is fetched exactly as given, and every following result page is then requested with this ordering, so pick the value that matches your pasted URL if you want its own sorting kept.

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

Which tutti.ch language edition to scrape (affects URL path and localized slugs). Search mode only: in URL mode the language is read from the pasted URL and from the page itself, so this field is ignored there.

## `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). Leave empty to walk every result page (tutti.ch itself stops serving results around page 100 = 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.

## `resumeFromRunId` (type: `string`):

Paste a previous run ID or dataset ID to continue a full-catalogue walk across separate runs. Listings already collected there (matched by listing id) are skipped, so this run only saves the new ones. Leave empty for a normal fresh run.

## `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"
  ],
  "urls": [
    "https://www.tutti.ch/de/q/velos/Ak8CoYmljeWNsZXOUwMDAwA"
  ],
  "sortBy": "newest",
  "language": "de",
  "fetchDetails": false,
  "maxListings": 20,
  "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 = {
    "mode": "search",
    "keyword": "velo",
    "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 = {
    "mode": "search",
    "keyword": "velo",
    "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(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

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

```

## CLI example

```bash
echo '{
  "mode": "search",
  "keyword": "velo",
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "CH"
  }
}' |
apify call abotapi/tutti-ch-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,abotapi/tutti-ch-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/33DggHseDjgS2hKua/builds/o1mIIMJdkosytD3iQ/openapi.json
