# RE/MAX Spain property listings scraper for Madrid

**Use case:** 

Extract RE/MAX Madrid sale listings with prices, beds, baths, area, descriptions, images, offices, agents, and canonical property URLs.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.remax.es/buscador-de-inmuebles/venta/todos/madrid/madrid/chamartin/"
    }
  ],
  "operation": "sale",
  "propertyType": "all",
  "province": "Madrid",
  "city": "Madrid",
  "district": "",
  "maxItems": 20,
  "includeDetails": true
}
```

## Output

```json
{
  "listingId": {
    "label": "Listing ID"
  },
  "reference": {
    "label": "Reference"
  },
  "operation": {
    "label": "Operation"
  },
  "propertyType": {
    "label": "Type"
  },
  "price": {
    "label": "Price (€)",
    "format": "number"
  },
  "city": {
    "label": "City"
  },
  "province": {
    "label": "Province"
  },
  "bedrooms": {
    "label": "Beds",
    "format": "number"
  },
  "bathrooms": {
    "label": "Baths",
    "format": "number"
  },
  "areaM2": {
    "label": "Area (m²)",
    "format": "number"
  },
  "officeName": {
    "label": "Office"
  },
  "url": {
    "label": "Property",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [RE/MAX Spain Property Listings Scraper](https://apify.com/automation-lab/remax-spain-property-listings-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/remax-spain-property-listings-scraper) to learn more, explore other use cases, and run it yourself.