# Find used Audi cars in Lombardy

**Use case:** 

Pull used Audi ads from Subito.it Auto in Lombardy (Milan area) without paging the site by hand. The task sets category "2", carBrand AUDI (000161), region "4", and vehicleStatus used, up to 100 cars. Export title, price, year, mileage, fuel, town, seller, images, and url. Listing events cost $1.00 per 1,000 listings; shop details add $1.50 per 1,000 when enabled. No platform usage fee.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.subito.it/annunci-italia/vendita/usato/?q=iphone"
    }
  ],
  "searchQueries": [
    "iphone"
  ],
  "category": "2",
  "adType": "s",
  "region": "4",
  "sortBy": "datedesc",
  "titleOnly": false,
  "shippingAvailable": false,
  "urgentOnly": false,
  "advertiserType": "",
  "carBrand": "000161",
  "vehicleStatus": "1",
  "newDriversOnly": false,
  "bodyType": "",
  "color": "",
  "gearbox": "",
  "doors": "",
  "vatDeductible": false,
  "qualityCertified": false,
  "includeListingDetails": false,
  "detailsConcurrency": 10,
  "maxItems": 100,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "IT"
  }
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "price": {
    "label": "Price (€)",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "town": {
    "label": "Town",
    "format": "text"
  },
  "province": {
    "label": "Province",
    "format": "text"
  },
  "region": {
    "label": "Region",
    "format": "text"
  },
  "publishedAt": {
    "label": "Published",
    "format": "date"
  },
  "advertiserName": {
    "label": "Seller",
    "format": "text"
  },
  "shopName": {
    "label": "Shop",
    "format": "text"
  },
  "shopAddress": {
    "label": "Shop address",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "model": {
    "label": "Model",
    "format": "text"
  },
  "year": {
    "label": "Year",
    "format": "number"
  },
  "mileage": {
    "label": "Mileage",
    "format": "number"
  },
  "detailsFetched": {
    "label": "Details",
    "format": "boolean"
  },
  "sourceQuery": {
    "label": "Source",
    "format": "text"
  },
  "listingId": {
    "label": "Listing ID",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Subito.it Scraper](https://apify.com/rigelbytes/subito-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/rigelbytes/subito-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/rigelbytes/subito-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
