# Athens Apartments for Sale Data Scraper

**Use case:** 

Retrieve listings of apartments for sale in Athens. Get property details, prices, and sizes in a structured format for analysis.

## Input

```json
{
  "geoPlaceIds": [
    "ChIJ8UNwBh-9oRQR3Y1mdkU1Nic"
  ],
  "areaSlugs": [
    "athens"
  ],
  "variation": "apartment-for-sale",
  "priceMin": 0,
  "priceMax": 0,
  "sqmMin": 0,
  "sqmMax": 0,
  "bedroomsMin": 0,
  "bedroomsMax": 0,
  "language": "en",
  "maxListings": 200,
  "maxPagesPerTask": 10,
  "requestDelay": 800,
  "maxRetries": 3,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "GR"
  }
}
```

## Output

```json
{
  "adId": {
    "label": "ID",
    "format": "text"
  },
  "propertyType": {
    "label": "Type",
    "format": "text"
  },
  "transactionType": {
    "label": "Buy/Rent",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Ccy",
    "format": "text"
  },
  "sqMeters": {
    "label": "m²",
    "format": "number"
  },
  "pricePerSqm": {
    "label": "€/m²",
    "format": "number"
  },
  "bedrooms": {
    "label": "Beds",
    "format": "number"
  },
  "bathrooms": {
    "label": "Baths",
    "format": "number"
  },
  "yearBuilt": {
    "label": "Year",
    "format": "number"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "agentName": {
    "label": "Agent",
    "format": "text"
  },
  "postedRelative": {
    "label": "Posted",
    "format": "text"
  },
  "detailUrl": {
    "label": "Link",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [xe.gr Scraper - Greece Real Estate Data](https://apify.com/logiover/xe-gr-real-estate-scraper-greece-property-data) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/xe-gr-real-estate-scraper-greece-property-data) to learn more, explore other use cases, and run it yourself.