# Apartments for sale in Amsterdam under €500K

**Use case:** 

Scrape residential property listings for sale in Amsterdam under €500,000 from Funda.nl. Get prices, photos, bedrooms, energy labels, and GPS coordinates.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.funda.nl/zoeken/koop?selected_area=[%22amsterdam%22]"
    }
  ],
  "includeNeighborhoodData": true,
  "contentLanguage": "en",
  "searchTransactionType": "buy",
  "searchLocation": "amsterdam",
  "searchPriceMax": 500000,
  "maxItems": 100,
  "maxConcurrency": 3,
  "minConcurrency": 1,
  "maxRequestRetries": 5
}
```

## Output

```json
{
  "_id": {
    "label": "ID",
    "format": "text"
  },
  "AddressTitle": {
    "label": "Address",
    "format": "text"
  },
  "AddressSubTitle": {
    "label": "Location",
    "format": "text"
  },
  "KoopprijsSubTitle": {
    "label": "Price",
    "format": "text"
  },
  "WoonOppervlakteSubTitle": {
    "label": "Living Area",
    "format": "text"
  },
  "NumberOfBedrooms": {
    "label": "Bedrooms",
    "format": "text"
  },
  "ListingUrl": {
    "label": "URL",
    "format": "link"
  },
  "BuurtName": {
    "label": "Neighborhood",
    "format": "text"
  },
  "IsSoldOrRented": {
    "label": "Sold/Rented",
    "format": "boolean"
  }
}
```

## About this Actor

This example demonstrates how to use [Funda.nl Scraper 🏠](https://apify.com/parsebird/funda-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parsebird/funda-scraper) to learn more, explore other use cases, and run it yourself.