# Airbnb availability scraper for family stays and prices

**Use case:** 

Scrape Paris Airbnb listings for a family trip with dates, guest counts, price filters, amenities, availability, and calendar pricing.

## Input

```json
{
  "locationQueries": [
    "Paris, France"
  ],
  "startUrls": [
    {
      "url": "https://www.airbnb.com/s/London--United-Kingdom/homes"
    }
  ],
  "checkIn": "2026-09-10",
  "checkOut": "2026-09-15",
  "adults": 2,
  "children": 2,
  "infants": 0,
  "pets": 0,
  "priceMin": 120,
  "priceMax": 450,
  "minBeds": 2,
  "minBedrooms": 2,
  "minBathrooms": 1,
  "locale": "en-US",
  "currency": "EUR",
  "skipDetailPages": false,
  "calendarMonths": 2,
  "maxListings": 40,
  "maxPricePerNight": 10000,
  "maxRequestsPerCrawl": 0
}
```

## Output

```json
{
  "thumbnail": {
    "label": "Thumbnail",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "roomType": {
    "label": "Room Type",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "object"
  },
  "rating": {
    "label": "Rating",
    "format": "object"
  },
  "personCapacity": {
    "label": "Person Capacity",
    "format": "number"
  },
  "url": {
    "label": "Url",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Airbnb Scraper — Listings, Prices & Amenities](https://apify.com/automation-lab/airbnb-listing) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/airbnb-listing) to learn more, explore other use cases, and run it yourself.