# Airbnb scraper for Miami listings, prices, and reviews

**Use case:** 

Scrape Miami Airbnb listings with nightly prices, ratings, reviews, beds, bedrooms, amenities, hosts, photos, and listing URLs.

## Input

```json
{
  "locationQueries": [
    "Miami Beach, FL"
  ],
  "startUrls": [
    {
      "url": "https://www.airbnb.com/s/London--United-Kingdom/homes"
    }
  ],
  "checkIn": "2026-06-01",
  "checkOut": "2026-06-05",
  "adults": 2,
  "children": 0,
  "infants": 0,
  "pets": 0,
  "priceMin": 100,
  "priceMax": 350,
  "minBeds": 1,
  "minBedrooms": 1,
  "minBathrooms": 1,
  "locale": "en-US",
  "currency": "USD",
  "skipDetailPages": false,
  "calendarMonths": 0,
  "maxListings": 50,
  "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.