# Scrape Airbnb Reviews

**Use case:** 

The old public reviews endpoint stops at seven reviews per listing and says nothing about the rest, which is the quiet kind of wrong. This uses the paged query instead: on one listing that meant all 105 reviews rather than 7. Reviews ride in the listing row and cost nothing extra.

## Input

```json
{
  "locationQueries": [
    "Lisbon, Portugal"
  ],
  "maxItems": 100,
  "gridSplit": "auto",
  "includeDetails": true,
  "includeCalendar": false,
  "calendarMonths": 3,
  "includeReviews": true,
  "maxReviews": 100,
  "adults": 1,
  "children": 0,
  "infants": 0,
  "pets": 0,
  "guestFavoriteOnly": false,
  "instantBookOnly": false,
  "superhostOnly": false,
  "onlyNew": false,
  "emitUnchanged": false,
  "currency": "USD",
  "locale": "en",
  "compactOutput": false,
  "excludeEmptyFields": false
}
```

## Output

```json
{
  "thumbnail": {
    "label": "Thumbnail",
    "format": "string"
  },
  "listing_id": {
    "label": "Listing id",
    "format": "string"
  },
  "name": {
    "label": "Name",
    "format": "string"
  },
  "property_type": {
    "label": "Property type",
    "format": "string"
  },
  "person_capacity": {
    "label": "Person capacity",
    "format": "integer"
  },
  "bedrooms": {
    "label": "Bedrooms",
    "format": "integer"
  },
  "beds": {
    "label": "Beds",
    "format": "integer"
  },
  "baths": {
    "label": "Baths",
    "format": "integer"
  },
  "rating": {
    "label": "Rating",
    "format": "integer"
  },
  "reviews_count": {
    "label": "Reviews count",
    "format": "integer"
  },
  "price_per_night": {
    "label": "Price per night",
    "format": "integer"
  },
  "price_currency": {
    "label": "Price currency",
    "format": "string"
  },
  "host_name": {
    "label": "Host name",
    "format": "string"
  },
  "host_is_superhost": {
    "label": "Host is superhost",
    "format": "boolean"
  },
  "latitude": {
    "label": "Latitude",
    "format": "integer"
  },
  "longitude": {
    "label": "Longitude",
    "format": "integer"
  },
  "url": {
    "label": "Url",
    "format": "string"
  }
}
```

## About this Actor

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


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/snow_leo_data/airbnb-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
