# Subito.it Scraper \[$2.5💰] Cars · Property · Jobs & More (`memo23/subito-scraper`) Actor

Scrape Subito.it Italian classifieds across every category — cars, real estate, electronics, jobs and goods. Title, full description, price, condition, category features (year/mileage/fuel…), location, images and seller. Paste a search URL or build one from filters

- **URL**: https://apify.com/memo23/subito-scraper.md
- **Developed by:** [Muhamed Didovic](https://apify.com/memo23) (community)
- **Categories:** Real estate, AI, Agents
- **Stats:** 3 total users, 2 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: 5.00 out of 5 stars

## Pricing

from $2.50 / 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.

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

## Subito.it Scraper

Turn any [Subito.it](https://www.subito.it) search into structured Italian-classifieds data. Paste a search URL or pick a category, region and keyword — and get one clean row per listing with title, full description, price, condition, category-specific features, location, images and seller.

Works across **every Subito category**: cars, motorcycles, real estate, electronics, phones, jobs, home, fashion and general marketplace goods — for sale and for rent.

#### How it works

![How the Subito scraper works](https://raw.githubusercontent.com/muhamed-didovic/muhamed-didovic.github.io/main/assets/how-it-works-subito.png)

#### ✨ Why use this scraper?

- **30 listings per request** — Subito embeds the full data of 30 ads in every search page, so the scraper reads them straight from the page JSON. Fast, cheap, and gentle on rate limits.
- **Every category, one schema** — phones, cars, property, jobs and goods all come out normalized, with a category-specific `features` map (a car gets `year`/`mileage`/`fuel`/`gearbox`/`power`; a flat gets rooms/m²; a phone gets condition/storage).
- **Two ways in** — paste any Subito URL (search page or direct annuncio), *or* build a search from filters (category × region × operation × keyword). No slug-crafting.
- **Full listing detail** — title, complete description, numeric price + currency, condition, all photos, region/province/comune, posted date, and the canonical annuncio URL.
- **Optional seller profiles** — enrich each seller from Subito's public trust API: name, member-since, verified flag, reputation score, feedback count and typical reply-time.
- **Deduped & ready** — one row per listing, deduped by id, numbers as real numbers, JSON / CSV / Excel out.

#### 🎯 Use cases

| Audience | What they pull |
|---|---|
| **Car & bike dealers** | Used-vehicle pricing by make/model/year/mileage across regions |
| **Real-estate investors** | For-sale & for-rent listings with price and location |
| **Resellers / arbitrage** | Underpriced electronics, phones and goods by keyword + condition |
| **Market analysts** | Price and inventory trends across categories and Italian regions |
| **Lead-gen teams** | Company/dealer advertisers (+ optional seller profile & email enrichment) |
| **Researchers** | Structured classifieds datasets for pricing or demand models |

#### 📥 Supported inputs

| Input | Example | Behaviour |
|---|---|---|
| Search / listing URL | `https://www.subito.it/annunci-lombardia/vendita/auto/?q=bmw` | Auto-paginates (`?o=N`), 30 ads/page |
| Category listing URL | `https://www.subito.it/annunci-italia/vendita/usato/` | Scrapes a whole category nationwide |
| Direct annuncio URL | `https://www.subito.it/{category}/{slug}-{id}.htm` | Scrapes that single listing (lighter row) |
| Filter builder | category = `auto`, region = `lombardia`, operation = `vendita`, query = `bmw` | Builds the search URL for you |

**Not supported as filters:** price / year / mileage and other advanced facets are applied server-side by Subito and aren't URL parameters — set them on subito.it and paste the resulting URL (every URL parameter is preserved).

#### 🔄 How it works

1. **Classify** each input URL as a search page or a direct annuncio.
2. **Read the page JSON** (`__NEXT_DATA__`) — 30 fully-structured listings per search page.
3. **Normalize** each listing: title, description, price, condition, category, type, geo, advertiser, images, date — and flatten the category-specific `features`.
4. **Paginate** via `?o=N` until `maxItems` is reached.
5. **(Optional) enrich** each seller via the trust API, and/or attempt a best-effort phone reveal, and/or discover a company advertiser's email.
6. **Push** one deduped row per listing (JSON / CSV / Excel).

#### ⚙️ Input parameters

| Field | Type | Default | Description |
|---|---|---|---|
| `searchUrls` | array | `["…/usato/?q=iphone"]` | Subito search/listing and/or annuncio URLs. Mix freely. |
| `category` | select | — | `auto`, `immobili`, `telefonia`, … or `usato` (all) — filter builder. |
| `region` | select | — | `italia` (nationwide) or any Italian region. |
| `operation` | select | — | `vendita` (sale) / `affitto` (rent). |
| `query` | string | — | Free-text keyword (`?q=`), e.g. `bmw serie 1`. |
| `fetchSellerProfile` | boolean | `false` | Add seller name, reputation, member-since, reply-time via the trust API. |
| `fetchSellerPhone` | boolean | `false` | Best-effort phone reveal (DataDome-gated — often null). |
| `enrichEmails` | boolean | `false` | Discover a contact email for **company** advertisers only. |
| `maxItems` | integer | `1000` | Hard cap on listings scraped (controls billing). |
| `proxy` | object | Apify residential | Proxy config — residential recommended (Subito uses DataDome). |

> Leave the filter-builder fields empty to use `searchUrls`. Set any one of them and the actor builds the search URL (sensible defaults fill the rest).

#### 📊 Output overview

Each row is a single Subito listing. Core facts (title, full description, price, condition, category, type, location, images, advertiser, posted date) come straight from the search page's embedded JSON — 30 listings per fetch. The category-specific attributes live in a flattened `features` object, so a car row carries `year`/`mileage`/`fuel`/`gearbox`/`power` while a phone row carries condition/storage and a flat carries rooms/size. Optional seller fields are merged inline when enrichment is on.

#### 📦 Output sample

```json
{
  "type": "listing",
  "listingId": "652228661",
  "title": "IPHONE 16 PRO 256GB",
  "description": "Telefono in ottime condizioni, munito di scatola + filo originale. Lo stato della batteria è di 91% …",
  "transactionType": "In vendita",
  "category": "Telefonia",
  "categorySlug": "telefonia",
  "price": 680,
  "currency": "EUR",
  "priceRaw": "680 €",
  "condition": "Ottimo - poco usato e ben conservato",
  "features": { "phone_type": "Cellulari e Smartphone", "item_condition": "Ottimo - poco usato e ben conservato", "item_shippable": "No" },
  "images": ["https://images.sbito.it/api/v1/sbt-ads-images-pro/images/ac/ac19fb15-…?rule=fullscreen-1x-auto"],
  "imageCount": 4,
  "region": "Campania",
  "province": "Napoli",
  "town": "Torre Annunziata",
  "advertiserId": "136119972",
  "advertiserIsCompany": false,
  "publishedAt": "2026-06-28 07:41:55",
  "listingUrl": "https://www.subito.it/telefonia/iphone-16-pro-256gb-napoli-652228661.htm",
  "scrapedAt": "2026-06-28T05:45:26.047Z"
}
````

A **car** listing fills the same row, with the vehicle attributes in `features`:

```json
"features": {
  "car": ["BMW", "X5 (G05/F95)", "X5 xDrive45e xLine"],
  "year": "2020", "register_date": "01/2020",
  "mileage": "140.000 - 149.999", "mileage_scalar": "149400 Km",
  "fuel": "Full Hybrid Benzina", "gearbox": "Automatico",
  "power": "210 kW / 286 Cv", "pollution": "Euro 6e",
  "seats": "5", "doors": "4/5", "color": "Nero", "vehicle_status": "Usato"
}
```

#### 🗂 Key output fields

| Category | Fields |
|---|---|
| **Identity** | `listingId`, `urn`, `hashId`, `listingUrl` |
| **Content** | `title`, `description`, `transactionType`, `publishedAt` |
| **Classification** | `category`, `categorySlug`, `categoryId`, `parentCategoryId` |
| **Pricing** | `price`, `currency`, `priceRaw`, `condition` |
| **Attributes** | `features` (category-specific: cars→year/mileage/fuel/power; property→rooms/size; etc.) |
| **Media** | `images[]` (full-resolution), `imageCount` |
| **Location** | `region`, `province`, `town` (+ `regionSlug`, `provinceSlug`, `townSlug`) |
| **Seller** | `advertiserId`, `advertiserIsCompany`, `advertiserName` |
| **Seller profile** *(opt-in)* | `sellerName`, `sellerMemberSince`, `sellerVerified`, `sellerReputationScore`, `sellerFeedbackCount`, `sellerReplyTime` |
| **Contact** *(opt-in)* | `sellerPhone` (best-effort), `contactEmail`, `contactWebsite`, `emailEnrichment` |

#### ❓ FAQ

**Does it work for cars, property and jobs — not just goods?**
Yes. Every Subito category uses the same row shape; the category-specific attributes land in `features`. A car gets year/mileage/fuel/gearbox/power, a flat gets rooms/size, a job gets contract type.

**Can I scrape a whole region or category?**
Yes — use a category/region listing URL (e.g. `/annunci-lombardia/vendita/auto/`) or the `region` + `category` filters. The actor paginates through every result up to `maxItems`.

**Do I get the seller's phone number?**
Best-effort only. Subito hides phone behind a DataDome-gated "Mostra numero" reveal, so `sellerPhone` is frequently `null`. The reliable seller data is `fetchSellerProfile` (name, reputation, member-since, reply-time via the public trust API) — note that one-off private sellers often have empty profiles, while active sellers and dealers return richer data.

**Why is email enrichment limited?**
About 97% of Subito sellers are private individuals with no website, so Clearbit-based email discovery only ever returns data for the rare company/dealer advertiser. It's off by default and free.

**Do I need a proxy?**
Subito uses DataDome anti-bot. Reading 30 listings per request keeps volume low, but residential proxies are recommended for large runs (the default).

#### 💬 Support

Found a bug or need an extra field? Open an issue from the actor's **Issues** tab on the Apify Console and it'll be looked at quickly.

#### 🛠 Additional services

Need a custom classifieds/marketplace scraper, scheduled runs, or a push integration into your own database / sheet / webhook? Get in touch through Apify — bespoke builds and modifications are welcome.

#### 🔎 Explore more scrapers

Looking for other listing-site scrapers (classifieds, real estate, jobs, products)? Browse the rest of the publisher's actors on the Apify Store.

***

### ⚠️ Disclaimer

This Actor is an independent tool and is not affiliated with, endorsed by, or sponsored by Subito.it, Adevinta, or any of their subsidiaries or affiliates. All trademarks mentioned are the property of their respective owners.

The scraper accesses only publicly available classifieds pages — no authenticated endpoints, account-only features, or content behind a Subito login. Users are responsible for ensuring their use complies with Subito's Terms of Service, applicable data-protection law (GDPR, etc.), and any contractual obligations of their own organisation. Personal data (such as seller contact details) must be handled lawfully.

***

### SEO Keywords

subito scraper, scrape subito, subito.it scraper, subito api, apify subito, italy classifieds scraper, italian marketplace scraper, subito cars scraper, subito auto scraper, subito immobili scraper, subito real estate scraper, italy used cars data, annunci scraper, subito jobs scraper, classifieds data italy, subito lead generation, marketplace listings scraper, used goods price tracking italy, subito alternative scraper, italian listings api

# Actor input Schema

## `searchUrls` (type: `array`):

Full subito.it URLs to crawl. Search URLs auto-paginate (30 listings per page); annuncio URLs are scraped directly.

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

Subito category to search.

## `region` (type: `string`):

Italian region to scope the search to. Choose 'All Italy' for nationwide.

## `operation` (type: `string`):

Transaction type. 'For sale' works for every category; 'For rent' is for real estate (immobili).

## `query` (type: `string`):

Free-text keyword to search for (the ?q= parameter), e.g. 'bmw serie 1' or 'iphone 14'. Optional.

## `fetchSellerProfile` (type: `boolean`):

When enabled, each unique seller is looked up via Subito's public trust API to add sellerName, sellerMemberSince, sellerVerified, sellerReputationScore, sellerFeedbackCount and sellerReplyTime. One cached call per seller. Reliable and recommended for lead-gen.

## `fetchSellerPhone` (type: `boolean`):

When enabled, attempts to reveal the seller's phone number per listing. Subito gates this behind DataDome, so it is BEST-EFFORT and frequently returns null — and it adds one request per listing (slower, higher block risk). Leave off unless you specifically need phone numbers.

## `enrichEmails` (type: `boolean`):

When enabled, company/dealer advertisers are run through website discovery (Clearbit) + contact-page scraping to find a contact email. ~97% of Subito sellers are private individuals with no website, so this only ever returns data for the rare company/dealer. Best-effort and free.

## `maxItems` (type: `integer`):

Hard cap on the number of listings collected. Subito searches can return tens of thousands of results, so always set a sensible cap to control billing.

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

Maximum number of pages/enrichment calls processed in parallel.

## `minConcurrency` (type: `integer`):

Minimum number of pages processed in parallel.

## `maxRequestRetries` (type: `integer`):

Number of retries before a failed request is given up.

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

Apify proxy settings. Subito uses DataDome anti-bot, so residential proxies are recommended for large runs; the listing approach (30 results per fetch) keeps request volume low.

## Actor input object example

```json
{
  "searchUrls": [
    "https://www.subito.it/annunci-italia/vendita/usato/?q=iphone"
  ],
  "query": "iphone 14 pro",
  "fetchSellerProfile": false,
  "fetchSellerPhone": false,
  "enrichEmails": false,
  "maxItems": 1000,
  "maxConcurrency": 10,
  "minConcurrency": 1,
  "maxRequestRetries": 5,
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# 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 = {
    "searchUrls": [
        "https://www.subito.it/annunci-italia/vendita/usato/?q=iphone"
    ],
    "proxy": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("memo23/subito-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 = {
    "searchUrls": ["https://www.subito.it/annunci-italia/vendita/usato/?q=iphone"],
    "proxy": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

# Run the Actor and wait for it to finish
run = client.actor("memo23/subito-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 '{
  "searchUrls": [
    "https://www.subito.it/annunci-italia/vendita/usato/?q=iphone"
  ],
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call memo23/subito-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Subito.it Scraper [$2.5💰] Cars · Property · Jobs & More",
        "description": "Scrape Subito.it Italian classifieds across every category — cars, real estate, electronics, jobs and goods. Title, full description, price, condition, category features (year/mileage/fuel…), location, images and seller. Paste a search URL or build one from filters",
        "version": "0.0",
        "x-build-id": "FdvIvXOVDeM9rQSry"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/memo23~subito-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-memo23-subito-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/memo23~subito-scraper/runs": {
            "post": {
                "operationId": "runs-sync-memo23-subito-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/memo23~subito-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-memo23-subito-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": [
                    "searchUrls"
                ],
                "properties": {
                    "searchUrls": {
                        "title": "Subito URLs",
                        "type": "array",
                        "description": "Full subito.it URLs to crawl. Search URLs auto-paginate (30 listings per page); annuncio URLs are scraped directly.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "category": {
                        "title": "Category",
                        "enum": [
                            "usato",
                            "auto",
                            "moto-e-scooter",
                            "veicoli-commerciali",
                            "caravan-e-camper",
                            "nautica",
                            "immobili",
                            "telefonia",
                            "informatica",
                            "elettronica",
                            "console-e-videogiochi",
                            "audio-video",
                            "fotografia",
                            "arredamento-e-casalinghi",
                            "giardino-e-fai-da-te",
                            "abbigliamento-e-accessori",
                            "tutto-per-i-bambini",
                            "sports-e-hobby",
                            "musica-e-film",
                            "libri-e-riviste",
                            "animali",
                            "lavoro",
                            "collezionismo"
                        ],
                        "type": "string",
                        "description": "Subito category to search."
                    },
                    "region": {
                        "title": "Region",
                        "enum": [
                            "italia",
                            "abruzzo",
                            "basilicata",
                            "calabria",
                            "campania",
                            "emilia-romagna",
                            "friuli-venezia-giulia",
                            "lazio",
                            "liguria",
                            "lombardia",
                            "marche",
                            "molise",
                            "piemonte",
                            "puglia",
                            "sardegna",
                            "sicilia",
                            "toscana",
                            "trentino-alto-adige",
                            "umbria",
                            "valle-d-aosta",
                            "veneto"
                        ],
                        "type": "string",
                        "description": "Italian region to scope the search to. Choose 'All Italy' for nationwide."
                    },
                    "operation": {
                        "title": "Operation",
                        "enum": [
                            "vendita",
                            "affitto"
                        ],
                        "type": "string",
                        "description": "Transaction type. 'For sale' works for every category; 'For rent' is for real estate (immobili)."
                    },
                    "query": {
                        "title": "Keyword query",
                        "type": "string",
                        "description": "Free-text keyword to search for (the ?q= parameter), e.g. 'bmw serie 1' or 'iphone 14'. Optional."
                    },
                    "fetchSellerProfile": {
                        "title": "Fetch seller profile (name, reputation, member-since, reply-time)",
                        "type": "boolean",
                        "description": "When enabled, each unique seller is looked up via Subito's public trust API to add sellerName, sellerMemberSince, sellerVerified, sellerReputationScore, sellerFeedbackCount and sellerReplyTime. One cached call per seller. Reliable and recommended for lead-gen.",
                        "default": false
                    },
                    "fetchSellerPhone": {
                        "title": "Attempt seller phone (best-effort)",
                        "type": "boolean",
                        "description": "When enabled, attempts to reveal the seller's phone number per listing. Subito gates this behind DataDome, so it is BEST-EFFORT and frequently returns null — and it adds one request per listing (slower, higher block risk). Leave off unless you specifically need phone numbers.",
                        "default": false
                    },
                    "enrichEmails": {
                        "title": "Enrich company sellers with contact emails (experimental, free)",
                        "type": "boolean",
                        "description": "When enabled, company/dealer advertisers are run through website discovery (Clearbit) + contact-page scraping to find a contact email. ~97% of Subito sellers are private individuals with no website, so this only ever returns data for the rare company/dealer. Best-effort and free.",
                        "default": false
                    },
                    "maxItems": {
                        "title": "Maximum items to scrape",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Hard cap on the number of listings collected. Subito searches can return tens of thousands of results, so always set a sensible cap to control billing.",
                        "default": 1000
                    },
                    "maxConcurrency": {
                        "title": "Max concurrency",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum number of pages/enrichment calls processed in parallel.",
                        "default": 10
                    },
                    "minConcurrency": {
                        "title": "Min concurrency",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Minimum number of pages processed in parallel.",
                        "default": 1
                    },
                    "maxRequestRetries": {
                        "title": "Max request retries",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Number of retries before a failed request is given up.",
                        "default": 5
                    },
                    "proxy": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Apify proxy settings. Subito uses DataDome anti-bot, so residential proxies are recommended for large runs; the listing approach (30 results per fetch) keeps request volume low.",
                        "default": {
                            "useApifyProxy": true,
                            "apifyProxyGroups": [
                                "RESIDENTIAL"
                            ]
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
