# Airbnb Reviews by Listing URL

**Use case:** 

Scrape every review for a specific Airbnb listing — text, rating, date, reviewer and host reply. Paste the room URL, structured JSON.

## Input

```json
{
  "startUrls": [
    "https://www.airbnb.com/rooms/12345678"
  ],
  "searchLocations": [
    "New York, NY"
  ],
  "reviewsMaxPerListing": 100,
  "reviewSort": "best",
  "maxResults": 50,
  "roomTypes": [],
  "excludeEmptyFields": false,
  "notificationLimit": 5,
  "notifyOnlyChanges": false
}
```

## Output

```json
{
  "reviewerName": {
    "label": "Reviewer name"
  },
  "rating": {
    "label": "Rating"
  },
  "localizedDate": {
    "label": "Localized date"
  },
  "text": {
    "label": "Text"
  },
  "listingId": {
    "label": "Listing id"
  }
}
```

## About this Actor

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