# Subito.it Scraper 🇮🇹 (cars, property, jobs, goods) (`tagadanar/subito-scraper`) Actor

Turn Subito.it, Italy's biggest classifieds site, into structured data in seconds. Search cars, property, jobs and goods, and get price, location, posting date, and private-vs-shop seller flag back as clean JSON. One flat price per listing, platform usage included, no API key.

- **URL**: https://apify.com/tagadanar/subito-scraper.md
- **Developed by:** [Tagada Data](https://apify.com/tagadanar) (community)
- **Categories:** E-commerce, Real estate, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.05 / 1,000 listing scrapeds

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are 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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js/docs.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.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/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 🇮🇹

Pull live listings from Subito.it, Italy's largest general classifieds site, as clean structured data. Search by keyword, filter by category, region, price and seller type, and get back one flat JSON record per listing with the price, the location, the posting date, whether the seller is a private person or a shop, and the photo. No account, no API key, one price per listing with platform usage included.

Subito covers everything Italians buy and sell: cars and motorbikes, apartments and holiday homes, phones and computers, furniture, clothing, collectibles, jobs and services. If you are tracking prices, building a lead list of dealers, feeding a resale model or monitoring a market, this turns the whole site into a spreadsheet.

### What you get

Each listing is one row:

| Field | What it is |
| --- | --- |
| `id` | Subito listing id |
| `title` | Listing title |
| `description` | Full listing text (Subito hides phone numbers and emails, so those come back redacted) |
| `url` | Direct link to the listing |
| `price` | Price as a number, in euros |
| `currency` | `EUR` when there is a price |
| `priceLabel` | Price exactly as the site shows it, e.g. `699 €` |
| `listingType` | `In vendita` (for sale), `In affitto` (for rent), and so on |
| `category` / `categoryId` | Subito category, e.g. `Informatica`, `Auto`, `Appartamenti` |
| `region` | One of Italy's 20 regions, e.g. `Lombardia` |
| `province` / `provinceCode` | Province and its plate code, e.g. `Brescia` / `BS` |
| `town` | Town (comune) |
| `condition` | Item condition where the seller set one, e.g. `Come nuovo` |
| `sellerType` | `private` for a private seller, `shop` for a professional or dealer |
| `sellerId` / `sellerName` | Seller identifier and shop name where present |
| `shippable` | Whether the seller offers shipping |
| `postedAt` | When the listing was posted (ISO 8601) |
| `imageUrl` / `imageCount` | First photo and how many the listing has |
| `searchQuery` | The search term this row came from |
| `source` / `scrapedAt` | `subito.it` and the capture time |

### Who uses it

- **Resellers and flippers** watching what a phone, a console or a bike actually sells for across Italy, and spotting under-priced listings the day they go up.
- **Lead-gen and sales teams** building a list of active shops and dealers in a category and region, using the `sellerType` flag to keep only professionals (or only private sellers).
- **Property and auto researchers** pulling every apartment, car or commercial vehicle in a region with its price and location for a market snapshot.
- **Price-monitoring and repricing tools** that run a saved search on a schedule and feed fresh listings into a model.

### How to use it

Type a search the way you would on Subito, pick the filters that matter, and set how many listings you want. Leave the search term empty to browse a whole category or region.

**Cheapest iPhones from shops in Lombardy**

```json
{
  "query": ["iphone 15"],
  "category": "telefonia",
  "region": "lombardia",
  "priceFrom": 100,
  "priceTo": 600,
  "sellerType": "shop",
  "sort": "price-asc",
  "maxResults": 100
}
````

**Every used car in Campania, private sellers only**

```json
{
  "category": "auto",
  "region": "campania",
  "sellerType": "private",
  "maxResults": 500
}
```

**Two goods searches across all of Italy**

```json
{
  "query": ["divano angolare", "bici elettrica"],
  "sort": "newest",
  "maxResults": 200
}
```

**Paste a search straight from your browser**

```json
{
  "searchUrls": [
    "https://www.subito.it/annunci-lombardia/vendita/informatica/?q=macbook"
  ],
  "maxResults": 100
}
```

When you paste a Subito URL, its filters win and the fields above are ignored, so this is the way to reach a specific province or town or any filter the site offers.

### Pricing

You pay per listing returned, platform usage included in the price. No subscription.

| Event | Price |
| --- | --- |
| Actor start | $0.001 per run |
| Listing scraped | $1.50 per 1,000 |

The tiny start fee covers runs that return nothing; on any normal search it is noise next to the per-listing price.

### FAQ

**Do I need a Subito account or an API key?**
No. You give a search, you get listings.

**Can I get seller phone numbers?**
No. Subito hides seller phone numbers and emails behind its own messaging, so they are redacted in the listing text and are not exposed here. What you do get is the private-vs-shop flag and the shop name where the seller is a professional.

**How many listings can one search return?**
Subito serves up to about 10,000 results for any single search. For a broader market than that, split the search by category, region or price band, which also makes each run faster.

**Can I monitor a search on a schedule?**
Yes. Sort by `newest`, set a Schedule on the actor, and each run returns the latest listings for your search.

**Which regions and categories are supported?**
All 20 Italian regions and every top-level Subito category, from `motori` (vehicles) and `immobili` (real estate) to `telefonia`, `arredamento`, `abbigliamento` and more. Pick them from the dropdowns, or paste a URL for a specific province or sub-category.

**Is it reliable?**
Yes. It reads Subito's own structured data rather than scraping fragile page markup, so the fields stay stable when the site restyles.

### Related scrapers

Building an EU classifieds pipeline? These cover the other big markets with the same flat output:

- **Kleinanzeigen Scraper** for Germany
- **Marktplaats Scraper** for the Netherlands
- **AutoScout24 Scraper** for cars across Europe

***

Subito scraper, Subito.it scraper, Italy classifieds scraper, subito annunci scraper, scrape Subito listings, Italian marketplace data, used car prices Italy, Italy real estate listings, dealer lead list Italy, private vs shop seller, classifieds price monitoring, Subito API alternative.

# Actor input Schema

## `query` (type: `array`):

One search per entry, exactly what you would type into the Subito search box, e.g. <code>iphone 15</code>, <code>divano</code>, <code>bmw serie 3</code>. Leave empty to browse a whole category or region instead.

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

Restrict the search to one Subito category, or browse it without a search term.

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

Restrict the search to one of Italy's 20 regions. For a specific province or town, paste a subito.it URL in "Search URLs" instead.

## `priceFrom` (type: `integer`):

Lowest price to include, in euros.

## `priceTo` (type: `integer`):

Highest price to include, in euros.

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

Keep only private sellers, only shops and dealers, or both. Every listing carries this flag in the output either way.

## `sort` (type: `string`):

Order of the results, same choices as on the site.

## `maxResults` (type: `integer`):

Stop after this many listings across all searches. You are only charged for listings actually delivered.

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

Paste one or more subito.it search page URLs straight from your browser, filters and province/town included. When set, the filter fields above are ignored.

## Actor input object example

```json
{
  "query": [
    "iphone 15"
  ],
  "category": "all",
  "region": "all",
  "sellerType": "all",
  "sort": "newest",
  "maxResults": 25
}
```

# Actor output Schema

## `listings` (type: `string`):

One item per listing in the default dataset.

# 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 = {
    "query": [
        "iphone 15"
    ],
    "maxResults": 25
};

// Run the Actor and wait for it to finish
const run = await client.actor("tagadanar/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 = {
    "query": ["iphone 15"],
    "maxResults": 25,
}

# Run the Actor and wait for it to finish
run = client.actor("tagadanar/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 '{
  "query": [
    "iphone 15"
  ],
  "maxResults": 25
}' |
apify call tagadanar/subito-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Subito.it Scraper 🇮🇹 (cars, property, jobs, goods)",
        "description": "Turn Subito.it, Italy's biggest classifieds site, into structured data in seconds. Search cars, property, jobs and goods, and get price, location, posting date, and private-vs-shop seller flag back as clean JSON. One flat price per listing, platform usage included, no API key.",
        "version": "0.2",
        "x-build-id": "LmzIrQOkn0Ga8dfAZ"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/tagadanar~subito-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-tagadanar-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/tagadanar~subito-scraper/runs": {
            "post": {
                "operationId": "runs-sync-tagadanar-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/tagadanar~subito-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-tagadanar-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",
                "properties": {
                    "query": {
                        "title": "Search terms",
                        "type": "array",
                        "description": "One search per entry, exactly what you would type into the Subito search box, e.g. <code>iphone 15</code>, <code>divano</code>, <code>bmw serie 3</code>. Leave empty to browse a whole category or region instead.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "category": {
                        "title": "Category",
                        "enum": [
                            "all",
                            "motori",
                            "auto",
                            "moto-scooter",
                            "veicoli-commerciali",
                            "accessori-auto",
                            "accessori-moto",
                            "nautica",
                            "caravan-camper",
                            "immobili",
                            "appartamenti",
                            "uffici-locali",
                            "ville",
                            "terreni",
                            "garage-box",
                            "case-vacanza",
                            "elettronica",
                            "informatica",
                            "audio-video",
                            "telefonia",
                            "fotografia",
                            "casa-persona",
                            "arredamento",
                            "giardino",
                            "abbigliamento",
                            "bambini",
                            "elettrodomestici",
                            "sports-hobby",
                            "sports",
                            "collezionismo",
                            "musica-film",
                            "libri",
                            "strumenti-musicali",
                            "animali",
                            "lavoro-servizi",
                            "offerte-lavoro",
                            "altri"
                        ],
                        "type": "string",
                        "description": "Restrict the search to one Subito category, or browse it without a search term.",
                        "default": "all"
                    },
                    "region": {
                        "title": "Region",
                        "enum": [
                            "all",
                            "valle-d-aosta",
                            "piemonte",
                            "liguria",
                            "lombardia",
                            "trentino-alto-adige",
                            "veneto",
                            "friuli-venezia-giulia",
                            "emilia-romagna",
                            "toscana",
                            "umbria",
                            "lazio",
                            "marche",
                            "abruzzo",
                            "molise",
                            "campania",
                            "puglia",
                            "basilicata",
                            "calabria",
                            "sardegna",
                            "sicilia"
                        ],
                        "type": "string",
                        "description": "Restrict the search to one of Italy's 20 regions. For a specific province or town, paste a subito.it URL in \"Search URLs\" instead.",
                        "default": "all"
                    },
                    "priceFrom": {
                        "title": "Price from (EUR)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Lowest price to include, in euros."
                    },
                    "priceTo": {
                        "title": "Price up to (EUR)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Highest price to include, in euros."
                    },
                    "sellerType": {
                        "title": "Seller type",
                        "enum": [
                            "all",
                            "private",
                            "shop"
                        ],
                        "type": "string",
                        "description": "Keep only private sellers, only shops and dealers, or both. Every listing carries this flag in the output either way.",
                        "default": "all"
                    },
                    "sort": {
                        "title": "Sort by",
                        "enum": [
                            "newest",
                            "price-asc",
                            "price-desc"
                        ],
                        "type": "string",
                        "description": "Order of the results, same choices as on the site.",
                        "default": "newest"
                    },
                    "maxResults": {
                        "title": "Max listings",
                        "minimum": 1,
                        "maximum": 100000,
                        "type": "integer",
                        "description": "Stop after this many listings across all searches. You are only charged for listings actually delivered.",
                        "default": 100
                    },
                    "searchUrls": {
                        "title": "Search URLs (optional, replaces the filters above)",
                        "type": "array",
                        "description": "Paste one or more subito.it search page URLs straight from your browser, filters and province/town included. When set, the filter fields above are ignored.",
                        "items": {
                            "type": "string"
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
