# Indomio.es Scraper (`saregaa/indomioes-scraper`) Actor

An advanced, high-performance scraper for Immobiliare.it. Supports scraping listings, single ads, agency profiles, and all Italian agencies using a pre-compiled index.

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

## Pricing

from $1.00 / 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

## 🏠 Indomio.es Pro Scraper

Extract property listings, agency search results, and **all agencies across Spain** from [Indomio.es](https://www.indomio.es) — one of Spain's leading real estate portals. Powered by direct API calls and browser fingerprint emulation via `curl_cffi`, this actor is fast, resilient, and virtually block-proof.

> **$1.00 per 1,000 results** — cost-effective and transparent pricing with no hidden fees.

---

### ✨ What makes this scraper different

| Feature                               | This Actor | Competitor A | Competitor B |
| ------------------------------------- | ---------- | ------------ | ------------ |
| Property listings (search)            | ✅         | ✅           | ✅           |
| Agency search by city                 | ✅         | ❌           | ❌           |
| **Scrape ALL Spanish agencies** | ✅         | ❌           | ❌           |
| Multi-language URLs (EN, ES)          | ✅         | ❌           | ❌           |
| Auto-pagination                       | ✅         | partial      | ✅           |
| Listing limit control                 | ✅         | ❌           | ❌           |
| Browser fingerprint emulation         | ✅         | ❌           | ❌           |
| State saving (migration safe)         | ✅         | ❌           | ❌           |

---

### 🔗 Supported URL types

The scraper intelligently detects the URL type and routes it to the correct API endpoint automatically. No configuration needed — just paste your URLs.

> ⚠️ **Note:** Links to single property ads (e.g. `/anuncios/12345/`) and individual agency profile pages (e.g. `/agencias-inmobiliarias/499603/engel-vlkers-madrid/`) are **not supported** and will be skipped automatically.

#### Property search listings

Standard search URLs with optional filters (price, category, location, etc.):

````

https://www.indomio.es/venta-casas/madrid-provincia/
https://www.indomio.es/alquiler-casas/barcelona/
https://www.indomio.es/venta-pisos/sevilla/?criterio=precio\&ordine=desc
https://www.indomio.es/subastas/valencia/

```

#### Agency search by city

Lists all agencies operating in a given city, with full pagination:

```

https://www.indomio.es/agencias-inmobiliarias/madrid/
https://www.indomio.es/agencias-inmobiliarias/barcelona/
https://www.indomio.es/agencias-inmobiliarias/sevilla/?pag=2

```

#### Commercial & specialty property types

Offices, land, warehouses, garages, rooms, and more:

```

https://www.indomio.es/venta-oficinas/madrid/
https://www.indomio.es/venta-terrenos/barcelona/
https://www.indomio.es/alquiler-locales/madrid/
https://www.indomio.es/venta-garajes/valencia/

```

#### Multi-language URLs

The scraper supports English and other language prefixes:

```

https://www.indomio.es/en/sale-houses/madrid/
https://www.indomio.es/en/rent-apartments/barcelona/

```

#### URLs without `https://` prefix

The scraper auto-corrects bare URLs:

```

indomio.es/venta-casas/madrid-provincia/?criterio=precio\&ordine=desc

````

---

### ⚙️ Input configuration

| Parameter              | Type    | Default     | Description                                                                             |
| ---------------------- | ------- | ----------- | --------------------------------------------------------------------------------------- |
| `startUrls`          | array   | —          | List of Indomio.es URLs to scrape                                                       |
| `maxListingsLimit`   | integer | `100`     | Max properties or agencies to collect per search. Set `0` for unlimited               |
| `scrapeAllAgencies`  | boolean | `false`   | Ignores `startUrls` and scrapes every agency in Spain using the built-in cities index |
| `proxyConfiguration` | object  | Apify proxy | Proxy settings. Apify residential proxies are recommended                               |

#### Example input

```json
{
  "startUrls": [
    { "url": "https://www.indomio.es/venta-casas/madrid-provincia/" },
    { "url": "https://www.indomio.es/agencias-inmobiliarias/barcelona/" }
  ],
  "maxListingsLimit": 200,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
````

***

### 📦 Output structure

#### Agency result

```json
{
  "address": "Calle de Génova 27 28004 - Madrid",
  "agencyUrl": "https://www.indomio.es/agencias-inmobiliarias/499603/engel-vlkers-madrid/",
  "description": "",
  "displayName": "Engel & Völkers Madrid",
  "guaranteed": false,
  "id": 499603,
  "imageUrls": {
    "large": "https://pic.indomio.es/imagenoresize/1507597783.jpg",
    "small": "https://pic.indomio.es/imagenoresize/1507597781.jpg"
  },
  "isPaid": true,
  "partnership": "",
  "phones": [
    {
      "type": "tel1",
      "value": "919 37 90 96",
      "formattedValues": "919379096",
      "isVirtual": false
    }
  ],
  "realEstate": 1436,
  "realEstateSales": 0,
  "timeContract": 1,
  "type": "agency",
  "highlighted": false,
  "agencyLocation": {
    "nation": "España",
    "region": "Comunidad de Madrid",
    "province": "Madrid",
    "city": "Madrid",
    "macrozone": "Chamberí",
    "latitude": 40.426,
    "longitude": -3.69208
  },
  "qualityIndex": 10,
  "premiumAds": 1409
}
```

#### Property listing result

```json
{
    "realEstate": {
      "visibility": "vetrina",
      "dataType": "list-real-estate",
      "id": 97706047,
      "uuid": "eafbed7d-eb3a-5b35-b725-b1f00dd6c464",
      "advertiser": {
        "agency": {
          "id": 376935,
          "type": "agency",
          "showOnlyAgentPhone": false,
          "phones": [
            {
              "type": "tel1",
              "value": "872 45 21 88"
            }
          ],
          "bookableVisit": {
            "isVisitBookable": true,
            "virtualVisitEnabled": true
          },
          "isPaid": true,
          "label": "agencia",
          "displayName": "Finques Santa Cristina SL",
          "guaranteed": false,
          "showAgentPhone": false,
          "showLogo": true,
          "imageUrls": {
            "small": "https://pic.indomio.es/imagenoresize/1380467221.jpg",
            "large": "https://pic.indomio.es/imagenoresize/1380467223.jpg"
          },
          "agencyUrl": "https://www.indomio.es/agencias-inmobiliarias/376935/finques-santa-cristina-sl/",
          "showExternalLink": false
        },
        "hasCallNumbers": true
      },
      "contract": "sale",
      "isNew": false,
      "luxury": false,
      "price": {
        "visible": true,
        "value": 1150000,
        "formattedValue": "€ 1.150.000",
        "loweredPrice": {
          "originalPrice": "€ 1.300.000",
          "currentPrice": "€ 1.150.000",
          "discountPercentage": "11,5",
          "priceDecreasedBy": "€ 150.000",
          "passedDays": 17,
          "date": "18/05/2026",
          "typologiesCount": 0
        },
        "priceRange": "oltre 500.000 €"
      },
      "properties": [
        {
          "multimedia": {
            "photos": [
              {
                "id": 1554299793,
                "caption": "Piscina",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554299793/xxs-c.jpg"
                }
              },
              {
                "id": 1554299835,
                "caption": "Vistas",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554299835/xxs-c.jpg"
                }
              },
              {
                "id": 1554299881,
                "caption": "Vistas",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554299881/xxs-c.jpg"
                }
              },
              {
                "id": 1554299937,
                "caption": "Fachada",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554299937/xxs-c.jpg"
                }
              },
              {
                "id": 1554299977,
                "caption": "Entrada/Salida",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554299977/xxs-c.jpg"
                }
              },
              {
                "id": 1554300021,
                "caption": "Escalera",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554300021/xxs-c.jpg"
                }
              },
              {
                "id": 1554300065,
                "caption": "Pasillo",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554300065/xxs-c.jpg"
                }
              },
              {
                "id": 1554300105,
                "caption": "Comedor",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554300105/xxs-c.jpg"
                }
              },
              {
                "id": 1554300163,
                "caption": "Comedor",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554300163/xxs-c.jpg"
                }
              },
              {
                "id": 1554300241,
                "caption": "Comedor",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554300241/xxs-c.jpg"
                }
              },
              {
                "id": 1554300283,
                "caption": "Salón",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554300283/xxs-c.jpg"
                }
              },
              {
                "id": 1554300327,
                "caption": "Jardín",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554300327/xxs-c.jpg"
                }
              },
              {
                "id": 1554300369,
                "caption": "Jardín",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554300369/xxs-c.jpg"
                }
              },
              {
                "id": 1554300405,
                "caption": "Comedor",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554300405/xxs-c.jpg"
                }
              },
              {
                "id": 1554300449,
                "caption": "Comedor",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554300449/xxs-c.jpg"
                }
              },
              {
                "id": 1554300485,
                "caption": "Cocina",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554300485/xxs-c.jpg"
                }
              },
              {
                "id": 1554300513,
                "caption": "Cocina",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554300513/xxs-c.jpg"
                }
              },
              {
                "id": 1554300557,
                "caption": "Vistas",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554300557/xxs-c.jpg"
                }
              },
              {
                "id": 1554300609,
                "caption": "Cocina",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554300609/xxs-c.jpg"
                }
              },
              {
                "id": 1554300677,
                "caption": "Jardín",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554300677/xxs-c.jpg"
                }
              },
              {
                "id": 1554300719,
                "caption": "Jardín",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554300719/xxs-c.jpg"
                }
              },
              {
                "id": 1554300775,
                "caption": "Jardín",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554300775/xxs-c.jpg"
                }
              },
              {
                "id": 1554300845,
                "caption": "Fachada",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554300845/xxs-c.jpg"
                }
              },
              {
                "id": 1554300881,
                "caption": "Detalles",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554300881/xxs-c.jpg"
                }
              },
              {
                "id": 1554300931,
                "caption": "Sala",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554300931/xxs-c.jpg"
                }
              },
              {
                "id": 1554300973,
                "caption": "Patio",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554300973/xxs-c.jpg"
                }
              },
              {
                "id": 1554301023,
                "caption": "Pasillo",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554301023/xxs-c.jpg"
                }
              },
              {
                "id": 1554301063,
                "caption": "Baño",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554301063/xxs-c.jpg"
                }
              },
              {
                "id": 1554301107,
                "caption": "Dormitorio",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554301107/xxs-c.jpg"
                }
              },
              {
                "id": 1554301145,
                "caption": "Dormitorio",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554301145/xxs-c.jpg"
                }
              },
              {
                "id": 1554301213,
                "caption": "Dormitorio",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554301213/xxs-c.jpg"
                }
              },
              {
                "id": 1554301257,
                "caption": "Dormitorio",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554301257/xxs-c.jpg"
                }
              },
              {
                "id": 1554301285,
                "caption": "Baño",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554301285/xxs-c.jpg"
                }
              },
              {
                "id": 1554301337,
                "caption": "Escalera",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554301337/xxs-c.jpg"
                }
              },
              {
                "id": 1554301385,
                "caption": "Pasillo",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554301385/xxs-c.jpg"
                }
              },
              {
                "id": 1554301433,
                "caption": "Dormitorio",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554301433/xxs-c.jpg"
                }
              },
              {
                "id": 1554301473,
                "caption": "Baño",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554301473/xxs-c.jpg"
                }
              },
              {
                "id": 1554301515,
                "caption": "Baño",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554301515/xxs-c.jpg"
                }
              },
              {
                "id": 1554301563,
                "caption": "Baño",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554301563/xxs-c.jpg"
                }
              },
              {
                "id": 1554301615,
                "caption": "Dormitorio",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554301615/xxs-c.jpg"
                }
              },
              {
                "id": 1554301647,
                "caption": "Dormitorio",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554301647/xxs-c.jpg"
                }
              },
              {
                "id": 1554301695,
                "caption": "Dormitorio",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554301695/xxs-c.jpg"
                }
              },
              {
                "id": 1554301731,
                "caption": "Vistas",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554301731/xxs-c.jpg"
                }
              },
              {
                "id": 1554301763,
                "caption": "Alrededores",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554301763/xxs-c.jpg"
                }
              },
              {
                "id": 1554301815,
                "caption": "Jardín",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554301815/xxs-c.jpg"
                }
              },
              {
                "id": 1554301859,
                "caption": "Dormitorio",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554301859/xxs-c.jpg"
                }
              },
              {
                "id": 1554301923,
                "caption": "Dormitorio",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554301923/xxs-c.jpg"
                }
              },
              {
                "id": 1554301991,
                "caption": "Despacho",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554301991/xxs-c.jpg"
                }
              },
              {
                "id": 1554302041,
                "caption": "Despacho",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554302041/xxs-c.jpg"
                }
              },
              {
                "id": 1554302091,
                "caption": "Baño",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554302091/xxs-c.jpg"
                }
              },
              {
                "id": 1554302117,
                "caption": "Dormitorio",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554302117/xxs-c.jpg"
                }
              },
              {
                "id": 1554302159,
                "caption": "Escalera",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554302159/xxs-c.jpg"
                }
              },
              {
                "id": 1554302179,
                "caption": "Salón",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554302179/xxs-c.jpg"
                }
              },
              {
                "id": 1554302237,
                "caption": "Salón",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554302237/xxs-c.jpg"
                }
              },
              {
                "id": 1554302301,
                "caption": "Salón",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554302301/xxs-c.jpg"
                }
              },
              {
                "id": 1554302351,
                "caption": "Terraza",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554302351/xxs-c.jpg"
                }
              },
              {
                "id": 1554302395,
                "caption": "Salón",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554302395/xxs-c.jpg"
                }
              },
              {
                "id": 1554302435,
                "caption": "Baño",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554302435/xxs-c.jpg"
                }
              },
              {
                "id": 1554302451,
                "caption": "Jardín",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554302451/xxs-c.jpg"
                }
              },
              {
                "id": 1554302507,
                "caption": "Jardín",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554302507/xxs-c.jpg"
                }
              },
              {
                "id": 1554302551,
                "caption": "Fachada",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554302551/xxs-c.jpg"
                }
              },
              {
                "id": 1554302619,
                "caption": "Fachada",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554302619/xxs-c.jpg"
                }
              },
              {
                "id": 1554302669,
                "caption": "Garaje/Parking",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554302669/xxs-c.jpg"
                }
              },
              {
                "id": 1554302725,
                "caption": "Escalera",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554302725/xxs-c.jpg"
                }
              },
              {
                "id": 1554302771,
                "caption": "Escalera",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554302771/xxs-c.jpg"
                }
              },
              {
                "id": 1554302825,
                "caption": "Baño",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554302825/xxs-c.jpg"
                }
              },
              {
                "id": 1554302869,
                "caption": "Fachada",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554302869/xxs-c.jpg"
                }
              },
              {
                "id": 1554302903,
                "caption": "Piscina",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554302903/xxs-c.jpg"
                }
              },
              {
                "id": 1554302951,
                "caption": "Piscina",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554302951/xxs-c.jpg"
                }
              },
              {
                "id": 1554302989,
                "caption": "Piscina",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554302989/xxs-c.jpg"
                }
              },
              {
                "id": 1554303043,
                "caption": "Vistas",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554303043/xxs-c.jpg"
                }
              },
              {
                "id": 1554303087,
                "caption": "Alrededores",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554303087/xxs-c.jpg"
                }
              },
              {
                "id": 1554303133,
                "caption": "Vistas",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554303133/xxs-c.jpg"
                }
              },
              {
                "id": 1554303177,
                "caption": "Jardín",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554303177/xxs-c.jpg"
                }
              },
              {
                "id": 1554303243,
                "caption": "Jardín",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554303243/xxs-c.jpg"
                }
              },
              {
                "id": 1554303281,
                "caption": "Alrededores",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554303281/xxs-c.jpg"
                }
              },
              {
                "id": 1554303327,
                "caption": "Alrededores",
                "urls": {
                  "small": "https://pic.indomio.es/image/1554303327/xxs-c.jpg"
                }
              }
            ],
            "virtualTours": [
              null
            ],
            "hasMultimedia": true
          },
          "bathrooms": "3+",
          "isMain": false,
          "floor": {
            "abbreviation": null,
            "value": "Planta baja",
            "floorOnlyValue": "planta baja",
            "ga4FloorValue": "planta baja"
          },
          "ga4Condition": "Ottimo / Ristrutturato",
          "price": {
            "visible": true,
            "value": 1150000,
            "formattedValue": "€ 1.150.000",
            "loweredPrice": {
              "originalPrice": "€ 1.300.000",
              "currentPrice": "€ 1.150.000",
              "discountPercentage": "11,5",
              "priceDecreasedBy": "€ 150.000",
              "passedDays": 17,
              "date": "18/05/2026",
              "typologiesCount": 1
            },
            "priceRange": "oltre 500.000 €"
          },
          "rooms": "5+",
          "surface": "595 m²",
          "typology": {
            "id": 33,
            "name": "Chalet"
          },
          "ga4Garage": "1 in box privato/box in garage",
          "typologyGA4Translation": "Villetta a schiera",
          "ga4features": [
            "caminetto",
            "impianto di allarme",
            "armadio a muro",
            "terrazzo",
            "piscina"
          ],
          "ga4Heating": "Assente",
          "category": {
            "id": 1,
            "name": "Residencial"
          },
          "photo": {
            "id": 1554299793,
            "caption": "Piscina",
            "urls": {
              "small": "https://pic.indomio.es/image/1554299793/xxs-c.jpg",
              "medium": "https://pic.indomio.es/image/1554299793/m-c.jpg",
              "large": "https://pic.indomio.es/image/1554299793/xxl.jpg"
            }
          },
          "bedRoomsNumber": "6",
          "location": {
            "address": "Padró",
            "latitude": 41.8168,
            "longitude": 3.00305,
            "marker": "marker",
            "region": "Cataluña",
            "province": "Girona",
            "macrozone": "Zona Santa Cristina d'Aro",
            "city": "Santa Cristina d'Aro",
            "nation": {
              "id": "S",
              "name": "España"
            }
          },
          "featureList": [
            {
              "type": "rooms",
              "label": "5+ habitaciones",
              "compactLabel": "5+"
            },
            {
              "type": "surface",
              "label": "595 m²"
            },
            {
              "type": "bathrooms",
              "label": "3+ baños",
              "compactLabel": "3+"
            },
            {
              "type": "terrace",
              "label": "Terraza"
            }
          ]
        }
      ],
      "title": "Chalet Padró 1, Zona Santa Cristina d'Aro, Santa Cristina d'Aro",
      "type": "ad",
      "typology": {
        "id": 33,
        "name": "Chalet"
      },
      "hasMainProperty": false,
      "isProjectLike": false,
      "isMosaic": false
    },
    "seo": {
      "anchor": "Chalet Padró 1, Zona Santa Cristina d'Aro, Santa Cristina d'Aro",
      "url": "https://www.indomio.es/anuncios/97706047/"
    },
    "idGeoHash": "sp6jukdb"
  }
```

***

### 🇪🇸 Scrape all Spanish agencies

Enable the `scrapeAllAgencies` option to collect every registered real estate agency across Spain. The actor uses a pre-compiled `apify_cities_es_index.json` file containing geo IDs for all Spanish municipalities and handles full pagination for each city automatically.

This mode supports **Apify server migrations** — the actor saves its progress after every city and resumes from where it left off if interrupted, ensuring no data is lost on long runs.

***

### 🛡️ Anti-block technology

- Uses **`curl_cffi`** with Chrome browser fingerprint emulation to mimic real browser traffic at the HTTP/2 level
- Works reliably with **Apify residential proxies** for maximum stability
- Calls Indomio's **internal JSON APIs** directly — no HTML parsing, no Playwright overhead, maximum speed and stability

***

### 💰 Pricing

**$1.00 per 1,000 results**

Pay only for what you extract. There are no hidden charges for failed requests or pagination overhead.

***

### ⚡ Performance tips

- Set `maxListingsLimit: 0` only when you genuinely need all pages — large cities can have thousands of listings
- For agency data collection at national scale, use `scrapeAllAgencies: true` instead of constructing per-city URLs manually
- For targeted searches, paste the exact URL from your browser — the scraper handles all filter parameters automatically

***

### 🐛 Known limitations

- The `scrapeAllAgencies` mode requires the `apify_cities_es_index.json` file to be bundled with the actor
- Single property ads and individual agency profile links are not supported and will be skipped
- Property description fields may be truncated in list view; full descriptions are available only through the source listing page

***

### 📬 Support

Found a bug or need a custom feature? Open an issue via the Apify platform or contact the actor author directly through the Apify store.

# Actor input Schema

## `startUrls` (type: `array`):

List of Indomio.es URLs to scrape (residential search, commercial search, or agency search). Note: Single ads or specific agency profile links are not supported and will be skipped.

## `maxListingsLimit` (type: `integer`):

The maximum number of properties or agencies to collect when auto-paginating through search results. Set to 0 for unlimited.

## `scrapeAllAgencies` (type: `boolean`):

If enabled, ignores startUrls and scrapes all agencies across Spain using the pre-compiled 'apify\_cities\_es\_index.json' file.

## `proxyConfiguration` (type: `object`):

Select proxies to prevent blocks. Apify residential proxies are highly recommended.

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://www.indomio.es/venta-casas/madrid-provincia/"
    }
  ],
  "maxListingsLimit": 100,
  "scrapeAllAgencies": false,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# 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 = {
    "startUrls": [
        {
            "url": "https://www.indomio.es/venta-casas/madrid-provincia/"
        }
    ],
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("saregaa/indomioes-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 = {
    "startUrls": [{ "url": "https://www.indomio.es/venta-casas/madrid-provincia/" }],
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("saregaa/indomioes-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 '{
  "startUrls": [
    {
      "url": "https://www.indomio.es/venta-casas/madrid-provincia/"
    }
  ],
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call saregaa/indomioes-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Indomio.es Scraper",
        "description": "An advanced, high-performance scraper for Immobiliare.it. Supports scraping listings, single ads, agency profiles, and all Italian agencies using a pre-compiled index.",
        "version": "0.0",
        "x-build-id": "x2BUR2COr3cUIQkwi"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/saregaa~indomioes-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-saregaa-indomioes-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/saregaa~indomioes-scraper/runs": {
            "post": {
                "operationId": "runs-sync-saregaa-indomioes-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/saregaa~indomioes-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-saregaa-indomioes-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": [
                    "proxyConfiguration"
                ],
                "properties": {
                    "startUrls": {
                        "title": "Start URLs",
                        "type": "array",
                        "description": "List of Indomio.es URLs to scrape (residential search, commercial search, or agency search). Note: Single ads or specific agency profile links are not supported and will be skipped.",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "maxListingsLimit": {
                        "title": "Max Listings Limit",
                        "minimum": 0,
                        "type": "integer",
                        "description": "The maximum number of properties or agencies to collect when auto-paginating through search results. Set to 0 for unlimited.",
                        "default": 100
                    },
                    "scrapeAllAgencies": {
                        "title": "Scrape all Spanish agencies",
                        "type": "boolean",
                        "description": "If enabled, ignores startUrls and scrapes all agencies across Spain using the pre-compiled 'apify_cities_es_index.json' file.",
                        "default": false
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Select proxies to prevent blocks. Apify residential proxies are highly recommended."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
