# Milan Apartment Listings Scraper for Sale

**Use case:** 

Retrieve up to 200 Milan apartment listings for sale on Subito.it. Get detailed property data in CSV, JSON, or Excel format.

## Input

```json
{
  "regionSlug": "lombardia",
  "provinceSlug": "",
  "citySlug": "milano",
  "transaction": "sale",
  "propertyType": "apartment",
  "keyword": "",
  "priceMin": 0,
  "priceMax": 0,
  "areaMin": 0,
  "areaMax": 0,
  "roomsMin": 0,
  "roomsMax": 0,
  "advertiserType": "all",
  "maxListings": 200,
  "maxPagesPerTask": 10,
  "requestDelay": 1500,
  "maxRetries": 3,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "IT"
  }
}
```

## Output

```json
{
  "adId": {
    "label": "ID",
    "format": "text"
  },
  "propertyType": {
    "label": "Type",
    "format": "text"
  },
  "transactionType": {
    "label": "Sale/Rent",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "priceCurrency": {
    "label": "Ccy",
    "format": "text"
  },
  "areaSqm": {
    "label": "m²",
    "format": "number"
  },
  "pricePerSqm": {
    "label": "EUR/m²",
    "format": "number"
  },
  "rooms": {
    "label": "Rooms",
    "format": "number"
  },
  "bathrooms": {
    "label": "Baths",
    "format": "number"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "province": {
    "label": "Province",
    "format": "text"
  },
  "datePosted": {
    "label": "Posted",
    "format": "text"
  },
  "detailUrl": {
    "label": "Link",
    "format": "link"
  }
}
```

## About this Actor

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