# Scrape Airbnb Prices For Specific Dates

**Use case:** 

Without check-in and check-out dates Airbnb quotes an indicative nightly figure. Give it both and the price becomes the real total for that stay, for the number of guests you name - which is the only number worth comparing between listings.

## Input

```json
{
  "locationQueries": [
    "Barcelona, Spain"
  ],
  "maxItems": 300,
  "gridSplit": "auto",
  "includeDetails": true,
  "includeCalendar": false,
  "calendarMonths": 3,
  "includeReviews": false,
  "maxReviews": 20,
  "checkIn": "2026-11-10",
  "checkOut": "2026-11-14",
  "adults": 2,
  "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`).
