# Scrape Airbnb Search and Room URLs

**Use case:** 

Run Airbnb Listings Scraper from a public search page and a public room URL to demonstrate URL-based extraction for repeatable saved searches.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.airbnb.com/s/New-York--NY/homes"
    },
    {
      "url": "https://www.airbnb.com/rooms/50633275"
    }
  ],
  "location": "New York, NY",
  "checkIn": "",
  "checkOut": "",
  "adults": 1,
  "maxItems": 25,
  "currency": "USD",
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "string"
  },
  "listingId": {
    "label": "Listing ID",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "roomType": {
    "label": "Room type",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "priceText": {
    "label": "Price text",
    "format": "string"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewsCount": {
    "label": "Reviews",
    "format": "integer"
  },
  "isSuperhost": {
    "label": "Superhost",
    "format": "boolean"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  },
  "source": {
    "label": "Source",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Airbnb Listings Scraper](https://apify.com/fetch_cat/airbnb-listings-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/fetch_cat/airbnb-listings-scraper) to learn more, explore other use cases, and run it yourself.