# Airbnb Scraper by City

**Use case:** 

Scrape Airbnb properties for any city and radius — price, photos and location. Structured, ready to run.

## Input

```json
{
  "mode": "listings",
  "searchLocations": [
    "New York, NY"
  ],
  "startUrls": [],
  "maxResults": 100,
  "roomTypes": [
    "Entire home/apt"
  ],
  "includeDetails": false,
  "includeReviews": false,
  "reviewsMaxPerListing": 10,
  "reviewSort": "best",
  "physicalDedupeKey": false,
  "excludeEmptyFields": false,
  "compact": false,
  "incrementalMode": false,
  "emitUnchanged": false,
  "emitExpired": false,
  "skipReposts": false,
  "notificationLimit": 5,
  "notifyOnlyChanges": false
}
```

## Output

```json
{
  "name": {
    "label": "Name"
  },
  "roomType": {
    "label": "Room type"
  },
  "price": {
    "label": "Price"
  },
  "avgRating": {
    "label": "Avg rating"
  },
  "reviewCount": {
    "label": "Review count"
  },
  "coordinate": {
    "label": "Coordinate"
  },
  "listingUrl": {
    "label": "Listing url"
  }
}
```

## About this Actor

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