# Appartamenti in Affitto a Firenze

**Use case:** 

Scarica gli annunci di appartamenti in affitto a Firenze con canone, superficie, locali, bagni, piano, zona, GPS e agenzia. CSV, JSON o Excel.

## Input

```json
{
  "scrapeMode": "overview",
  "searchMode": "byPlace",
  "places": [
    "Firenze"
  ],
  "contract": "rent",
  "propertyType": "appartamenti",
  "searchUrls": [
    "https://www.immobiliare.it/vendita-ville/roma/"
  ],
  "listingUrls": [
    "https://www.immobiliare.it/annunci/128819432/"
  ],
  "maxResults": 25
}
```

## Output

```json
{
  "thumbnail": {
    "label": "🖼️ Thumbnail",
    "format": "string"
  },
  "id": {
    "label": "🆔 Listing ID",
    "format": "integer"
  },
  "propertyTitle": {
    "label": "🏷️ Title",
    "format": "string"
  },
  "url": {
    "label": "🔗 URL",
    "format": "string"
  },
  "source": {
    "label": "📡 Source",
    "format": "string"
  },
  "contract": {
    "label": "🏷️ Contract",
    "format": "string"
  },
  "typology": {
    "label": "🏠 Typology",
    "format": "string"
  },
  "is_new": {
    "label": "🆕 New Build",
    "format": "boolean"
  },
  "is_luxury": {
    "label": "💎 Luxury",
    "format": "boolean"
  },
  "price": {
    "label": "💶 Price (€)",
    "format": "integer"
  },
  "price_formatted": {
    "label": "💶 Price (formatted)",
    "format": "string"
  },
  "price_per_sqm": {
    "label": "📊 Price / m² (raw)",
    "format": "string"
  },
  "price_per_sqm_eur": {
    "label": "📊 Price / m² (€)",
    "format": "integer"
  },
  "currency": {
    "label": "💱 Currency",
    "format": "string"
  },
  "surface_sqm": {
    "label": "📐 Surface (m²)",
    "format": "integer"
  },
  "rooms": {
    "label": "🚪 Rooms",
    "format": "integer"
  },
  "bedrooms": {
    "label": "🛏️ Bedrooms",
    "format": "integer"
  },
  "bathrooms": {
    "label": "🛁 Bathrooms",
    "format": "integer"
  },
  "floor": {
    "label": "🪜 Floor",
    "format": "string"
  },
  "elevator": {
    "label": "🛗 Elevator",
    "format": "boolean"
  },
  "building_year": {
    "label": "🏗️ Build Year",
    "format": "integer"
  },
  "condition": {
    "label": "🛠️ Condition",
    "format": "string"
  },
  "energy_class": {
    "label": "⚡ Energy Class",
    "format": "string"
  },
  "heating": {
    "label": "🔥 Heating",
    "format": "string"
  },
  "air_conditioning": {
    "label": "❄️ Air Conditioning",
    "format": "string"
  },
  "condominium_expenses": {
    "label": "🏢 Condominium Fees",
    "format": "string"
  },
  "city": {
    "label": "🏙️ City",
    "format": "string"
  },
  "province": {
    "label": "🗺️ Province",
    "format": "string"
  },
  "region": {
    "label": "🗺️ Region",
    "format": "string"
  },
  "macrozone": {
    "label": "🗺️ Macrozone",
    "format": "string"
  },
  "microzone": {
    "label": "🗺️ Microzone",
    "format": "string"
  },
  "address": {
    "label": "📫 Address",
    "format": "string"
  },
  "latitude": {
    "label": "📍 Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "📍 Longitude",
    "format": "number"
  },
  "agency_name": {
    "label": "🏢 Agency",
    "format": "string"
  },
  "agent_name": {
    "label": "🧑‍💼 Agent",
    "format": "string"
  },
  "agency_phone": {
    "label": "📞 Phone",
    "format": "string"
  },
  "agency_id": {
    "label": "🆔 Agency ID",
    "format": "integer"
  },
  "agency_url": {
    "label": "🔗 Agency URL",
    "format": "string"
  },
  "is_private": {
    "label": "👤 Private Seller",
    "format": "boolean"
  },
  "description": {
    "label": "📝 Description",
    "format": "string"
  },
  "features": {
    "label": "✨ Features",
    "format": "array"
  },
  "photos": {
    "label": "📷 Photos",
    "format": "array"
  },
  "photo_count": {
    "label": "📷 Photo Count",
    "format": "integer"
  },
  "metadata": {
    "label": "🧾 Run Metadata",
    "format": "object"
  }
}
```

## About this Actor

This example demonstrates how to use [Immobiliare.it Scraper — Italy Property Data & API](https://apify.com/sian.agency/immobiliare-property-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/sian.agency/immobiliare-property-scraper.md) to learn more, explore other use cases, and run it yourself.


## 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.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **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 full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/sian.agency/immobiliare-property-scraper.md

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).
