# Scrape Airbnb Listings For A City

**Use case:** 

Airbnb's own search stops at 270 rows for one query - 227 of them unique - and there is no page past it. This task splits the area into a map grid when the flat pages run out, which took one Paris search from 257 listings to 1,916. Every row carries the title, the room and property type, beds, baths, the nightly price, the rating and the host.

## Input

```json
{
  "locationQueries": [
    "Paris, France"
  ],
  "maxItems": 300,
  "gridSplit": "auto",
  "includeDetails": true,
  "includeCalendar": false,
  "calendarMonths": 3,
  "includeReviews": false,
  "maxReviews": 20,
  "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`).
