# Spitogatos Scraper — Greece Real Estate Listings (`unfenced-group/spitogatos-scraper`) Actor

Scrape 200,000+ property listings from Spitogatos.gr — Greece's largest real estate portal. GPS coordinates, photos, price, area, rooms. No proxy. $0.89/1,000 listings.

- **URL**: https://apify.com/unfenced-group/spitogatos-scraper.md
- **Developed by:** [Unfenced Group](https://apify.com/unfenced-group) (community)
- **Categories:** Real estate, Automation, Developer tools
- **Stats:** 2 total users, 0 monthly users, 0.0% runs succeeded, 1 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.71 / 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.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## Spitogatos Scraper — Greece Real Estate Listings

![Spitogatos Scraper — Greece Real Estate Listings](https://api.apify.com/v2/key-value-stores/lJlifu6C8YQfZMPKE/records/spitogatos-scraper)

Extract structured real estate listings from [Spitogatos.gr](https://www.spitogatos.gr) — Greece's largest property portal. No API key or account required.

---

### Features

- **Supports all property types** — apartments, houses, land, commercial, new developments
- **For sale and for rent** — both transaction types from any search URL
- **English and Greek URLs** — both URL formats work as input
- **Rich structured output** — price, size, rooms, location, coordinates, images, agency, publication date, and more
- **Optional detail enrichment** — adds year of construction, energy class, heating type, 15+ amenity flags, renovation details, common expenses, and street address
- **Fast pure-HTTP architecture** — no browser required, runs in 256 MB

---

### Input parameters

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `startUrls` | array | Athens sale | Search result page URLs from Spitogatos.gr. Supports English (`/en/for_sale-apartments/athens-center`) and Greek (`/pwliseis-katoikies/athina-kentro`) formats. |
| `maxItems` | integer | 100 | Maximum total listings to extract. Set to `0` for unlimited. |
| `maxPages` | integer | 10 | Maximum result pages per URL (30 listings/page). Set to `0` for unlimited. |
| `fetchDetails` | boolean | false | Fetch each listing's detail page for extra fields: year built, energy class, amenities, renovation info, and more. Increases run time and cost proportionally. |

#### Example URLs

````

https://www.spitogatos.gr/en/for\_sale-apartments/athens-center
https://www.spitogatos.gr/en/for\_rent-homes/thessaloniki
https://www.spitogatos.gr/en/for\_sale-land/crete
https://www.spitogatos.gr/en/for\_sale-commercial/piraeus
https://www.spitogatos.gr/pwliseis-katoikies/athina-kentro
https://www.spitogatos.gr/enoikiaseis-diamerismata/glyfada

````

---

### Output

Each listing includes the following fields:

#### Core fields (always present)

| Field | Type | Description |
|-------|------|-------------|
| `id` | string | Spitogatos listing ID |
| `url` | string | Direct URL to the listing page |
| `operationType` | string | `sale` or `rent` |
| `propertyType` | string | `apartment`, `house`, `land`, or `commercial` |
| `priceText` | string | Formatted price, e.g. `€ 195,000` |
| `priceAmount` | number | Numeric price in EUR |
| `priceCurrency` | string | Always `EUR` |
| `pricePerSqm` | number | Price per square metre |
| `neighborhood` | string | Sub-area name |
| `city` | string | City or broader area name |
| `country` | string | Always `GR` |
| `bedrooms` | number | Number of bedrooms |
| `bathrooms` | number | Number of bathrooms |
| `kitchens` | number | Number of kitchens |
| `livingRooms` | number | Number of living rooms |
| `surfaceTotal` | number | Total area in m² |
| `surfaceUnit` | string | Always `m²` |
| `floor` | string | Floor number |
| `latitude` | number | Approximate latitude |
| `longitude` | number | Approximate longitude |
| `descriptionText` | string | Full listing description (HTML stripped) |
| `images` | array | High-resolution image URLs (up to 20) |
| `agencyName` | string | Real estate agency name |
| `adType` | string | Listing tier: `vip`, `prime`, `expert`, or `simple` |
| `publishDate` | string | Publication date `YYYY-MM-DD` |
| `publishDateISO` | string | Publication date ISO format |
| `source` | string | Always `spitogatos.gr` |
| `scrapedAt` | string | ISO timestamp of extraction |
| `contentHash` | string | MD5 hash for deduplication |

#### Detail fields (only with `fetchDetails: true`)

| Field | Type | Description |
|-------|------|-------------|
| `yearOfConstruction` | number | Year the property was built |
| `availability` | string | Date available from |
| `lotSize` | number | Land/lot size in m² |
| `levels` | number | Number of levels/floors in building |
| `commonExpenses` | number | Monthly common expenses in EUR |
| `streetAddress` | string | Street address (if disclosed) |
| `hasElevator` | boolean | Building has elevator |
| `hasGarage` | boolean | Includes garage or parking |
| `hasPool` | boolean | Has swimming pool |
| `hasFireplace` | boolean | Has fireplace |
| `hasStorage` | boolean | Has storage room |
| `hasAttic` | boolean | Has attic |
| `hasAC` | boolean | Has air conditioning |
| `hasBalcony` | boolean | Has balcony |
| `balconyArea` | number | Balcony area in m² |
| `hasGarden` | boolean | Has garden |
| `hasView` | boolean | Has view |
| `isRenovated` | boolean | Recently renovated |
| `renovationYear` | number | Year of renovation |
| `furnished` | string/boolean | Furnished status |
| `energyClass` | string | Energy certificate class: `A+`, `A`, `B+`, `B`, `C`, `D`, `E`, `Z`, `H` |
| `heatingType` | string | `autonomous`, `central`, `underfloor`, `air_pump`, or `none` |

---

### 💰 Pricing

**$0.99 per 1,000 results** — you only pay for successfully extracted listings.

| Results | Cost |
|---------|------|
| 100 | ~$0.10 |
| 1,000 | ~$0.99 |
| 10,000 | ~$9.90 |
| 100,000 | ~$99.00 |

Use the **Max items** cap to control your spend exactly.

---

### Additional services

Need custom data pipelines, scheduled exports, or integration support?
Contact [Unfenced Group](https://apify.com/unfenced-group) for tailored solutions.

---

*Part of the [Unfenced Group](https://apify.com/unfenced-group) scraper portfolio · Issues? Open a ticket or send a message.*

### Related scrapers

Other scrapers in our **Real Estate — Southern Europe & LATAM** collection:

- [Properati Propoperty real estate Scraper](https://apify.com/unfenced-group/properati-scraper)
- [Metrocuadrado Scraper](https://apify.com/unfenced-group/metrocuadrado-scraper)
- [Infocasas.com Real Estate Scraper](https://apify.com/unfenced-group/infocasas-scraper)

# Actor input Schema

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

Spitogatos.gr search result page URLs. Supports English (/en/for_sale-apartments/athens-center) and Greek (/pwliseis-katoikies/athina-kentro) URL formats.
## `maxItems` (type: `integer`):

Maximum total listings to extract. Set to 0 for unlimited.
## `maxPages` (type: `integer`):

Maximum result pages to visit per start URL (30 listings/page). Set to 0 for unlimited.
## `fetchDetails` (type: `boolean`):

Visit each listing's detail page for extra fields: year of construction, energy class, heating type, amenities (elevator, garage, pool, AC, fireplace, balcony, garden), renovation details, common expenses, and street address.

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://www.spitogatos.gr/en/for_sale-apartments/athens-center"
    }
  ],
  "maxItems": 100,
  "maxPages": 10,
  "fetchDetails": false
}
````

# 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.spitogatos.gr/en/for_sale-apartments/athens-center"
        }
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("unfenced-group/spitogatos-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.spitogatos.gr/en/for_sale-apartments/athens-center" }] }

# Run the Actor and wait for it to finish
run = client.actor("unfenced-group/spitogatos-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.spitogatos.gr/en/for_sale-apartments/athens-center"
    }
  ]
}' |
apify call unfenced-group/spitogatos-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Spitogatos Scraper — Greece Real Estate Listings",
        "description": "Scrape 200,000+ property listings from Spitogatos.gr — Greece's largest real estate portal. GPS coordinates, photos, price, area, rooms. No proxy. $0.89/1,000 listings.",
        "version": "0.1",
        "x-build-id": "THycIbgRypisdEHRe"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/unfenced-group~spitogatos-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-unfenced-group-spitogatos-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/unfenced-group~spitogatos-scraper/runs": {
            "post": {
                "operationId": "runs-sync-unfenced-group-spitogatos-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/unfenced-group~spitogatos-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-unfenced-group-spitogatos-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": [
                    "startUrls"
                ],
                "properties": {
                    "startUrls": {
                        "title": "Start URLs",
                        "type": "array",
                        "description": "Spitogatos.gr search result page URLs. Supports English (/en/for_sale-apartments/athens-center) and Greek (/pwliseis-katoikies/athina-kentro) URL formats.",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "maxItems": {
                        "title": "Max items",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum total listings to extract. Set to 0 for unlimited.",
                        "default": 100
                    },
                    "maxPages": {
                        "title": "Max pages per URL",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum result pages to visit per start URL (30 listings/page). Set to 0 for unlimited.",
                        "default": 10
                    },
                    "fetchDetails": {
                        "title": "Fetch detail pages",
                        "type": "boolean",
                        "description": "Visit each listing's detail page for extra fields: year of construction, energy class, heating type, amenities (elevator, garage, pool, AC, fireplace, balcony, garden), renovation details, common expenses, and street address.",
                        "default": false
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
