# Scrape Instant Book Airbnb Listings

**Use case:** 

Only listings that can be booked without waiting for host approval. Sent to Airbnb as a search filter, combined here with the guest-favourite flag for the part of the market that is both bookable and vouched for.

## Input

```json
{
  "locationQueries": [
    "Dubai, United Arab Emirates"
  ],
  "maxItems": 200,
  "gridSplit": "auto",
  "includeDetails": true,
  "includeCalendar": false,
  "calendarMonths": 3,
  "includeReviews": false,
  "maxReviews": 20,
  "adults": 1,
  "children": 0,
  "infants": 0,
  "pets": 0,
  "guestFavoriteOnly": true,
  "instantBookOnly": true,
  "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`).
