# Build a multi-city Airbnb listing URL inventory

**Use case:** 

Create one deduplicated Airbnb room URL dataset across Barcelona, Amsterdam, and Berlin for a recurring data pipeline.

## Input

```json
{
  "destinations": [
    "Barcelona, Spain",
    "Amsterdam, Netherlands",
    "Berlin, Germany"
  ],
  "startUrls": [
    {
      "url": "https://www.airbnb.com/s/Amsterdam--Netherlands/homes"
    }
  ],
  "maxItems": 100,
  "maxPagesPerSearch": 2,
  "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.