# Compare Pisos.com Property Listings Across Spanish Cities

**Use case:** 

Run a deeper Pisos.com scrape across Madrid, Barcelona, and Valencia search URLs to compare available real estate listings.

## Input

```json
{
  "searchUrls": [
    "https://www.pisos.com/venta/pisos-madrid/",
    "https://www.pisos.com/venta/pisos-barcelona/",
    "https://www.pisos.com/venta/pisos-valencia/"
  ],
  "maxItems": 300,
  "maxPagesPerSearch": 10,
  "includeImages": true,
  "maxRequestRetries": 3
}
```

## Output

```json
{
  "listingId": {
    "label": "Listing ID",
    "format": "text"
  },
  "url": {
    "label": "Listing URL",
    "format": "link"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "operation": {
    "label": "Operation",
    "format": "text"
  },
  "propertyType": {
    "label": "Property type",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "bedrooms": {
    "label": "Bedrooms",
    "format": "number"
  },
  "bathrooms": {
    "label": "Bathrooms",
    "format": "number"
  },
  "areaSqm": {
    "label": "Area m²",
    "format": "number"
  },
  "floor": {
    "label": "Floor",
    "format": "text"
  },
  "agencyName": {
    "label": "Agency",
    "format": "text"
  },
  "agencyPhone": {
    "label": "Phone",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "imageUrls": {
    "label": "Images",
    "format": "array"
  },
  "searchUrl": {
    "label": "Search URL",
    "format": "link"
  },
  "pageNumber": {
    "label": "Page",
    "format": "number"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Pisos.com Real Estate Scraper](https://apify.com/automation-lab/pisos-com-real-estate-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/pisos-com-real-estate-scraper) to learn more, explore other use cases, and run it yourself.