# Habitaclia Barcelona Properties Scraper

**Use case:** 

Scrape Barcelona property listings from Habitaclia with title, location, price, and area. Export structured Spanish real estate data to JSON or CSV.

## Input

```json
{
  "startUrl": "https://www.habitaclia.com",
  "maxItems": 50,
  "searchQuery": "Barcelona",
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "title": {
    "label": "title",
    "format": "text"
  },
  "location": {
    "label": "location",
    "format": "text"
  },
  "price_eur": {
    "label": "price_eur",
    "format": "text"
  },
  "area_sqm": {
    "label": "area_sqm",
    "format": "text"
  },
  "rooms": {
    "label": "rooms",
    "format": "text"
  },
  "bathrooms": {
    "label": "bathrooms",
    "format": "text"
  },
  "floor": {
    "label": "floor",
    "format": "text"
  },
  "year_built": {
    "label": "year_built",
    "format": "text"
  },
  "energy_rating": {
    "label": "energy_rating",
    "format": "text"
  },
  "agency": {
    "label": "agency",
    "format": "text"
  },
  "url": {
    "label": "url",
    "format": "text"
  },
  "scrapedAt": {
    "label": "scrapedAt",
    "format": "date"
  },
  "error": {
    "label": "error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Habitaclia Spain Real Estate Scraper](https://apify.com/parseforge/habitaclia-spain-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/habitaclia-spain-scraper) to learn more, explore other use cases, and run it yourself.