# Resolve a filtered Amsterdam Airbnb search

**Use case:** 

Preserve an Airbnb search URL's guest and stay filters while extracting its room URLs and search positions.

## Input

```json
{
  "destinations": [
    "Barcelona, Spain"
  ],
  "startUrls": [
    {
      "url": "https://www.airbnb.com/s/Amsterdam--Netherlands/homes?adults=2&min_bedrooms=1"
    }
  ],
  "maxItems": 15,
  "maxPagesPerSearch": 1,
  "locale": "en-US",
  "currency": "EUR",
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "listingId": {
    "label": "Listing ID",
    "format": "string"
  },
  "listingUrl": {
    "label": "Listing URL",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "roomType": {
    "label": "Room type",
    "format": "string"
  },
  "searchPosition": {
    "label": "Position",
    "format": "integer"
  },
  "pageNumber": {
    "label": "Page",
    "format": "integer"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "integer"
  },
  "isSuperhost": {
    "label": "Superhost",
    "format": "boolean"
  },
  "price": {
    "label": "Price",
    "format": "string"
  },
  "searchInput": {
    "label": "Search input",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Airbnb Room URL Discovery Scraper](https://apify.com/automation-lab/airbnb-room-url-discovery-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/airbnb-room-url-discovery-scraper) to learn more, explore other use cases, and run it yourself.