# Discover Airbnb room URLs in Barcelona

**Use case:** 

Turn a Barcelona destination search into deduplicated Airbnb listing IDs and canonical room URLs.

## Input

```json
{
  "destinations": [
    "Barcelona, Spain"
  ],
  "startUrls": [
    {
      "url": "https://www.airbnb.com/s/Amsterdam--Netherlands/homes"
    }
  ],
  "maxItems": 20,
  "maxPagesPerSearch": 2,
  "locale": "en-US",
  "currency": "USD",
  "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.