# Scrape Airbnb Vacation Rentals by Region

**Use case:** 

Scrape Airbnb vacation rentals for any destination or region — price, rating, capacity, amenities and photos. Export to CSV, JSON or Excel.

## Input

```json
{
  "search": [
    "Lake Tahoe"
  ],
  "adults": 1,
  "children": 0,
  "infants": 0,
  "pets": 0,
  "maxListings": 200,
  "currency": "USD",
  "includeListingDetails": true,
  "includeImages": true,
  "includeAmenities": true,
  "includeHostInfo": true,
  "includeReviewsSummary": true,
  "useApifyProxy": true
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "propertyType": {
    "label": "Property Type",
    "format": "text"
  },
  "roomType": {
    "label": "Room Type",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "pricePerNight": {
    "label": "Price/night",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewsCount": {
    "label": "Reviews",
    "format": "number"
  },
  "guestCapacity": {
    "label": "Guests",
    "format": "number"
  },
  "isSuperhost": {
    "label": "Superhost",
    "format": "boolean"
  },
  "listingUrl": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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