# Miami Beach Airbnb Listings with Prices Scraper

**Use case:** 

Retrieve detailed listings of Airbnb homes in Miami Beach, including prices and availability for up to 30 properties.

## Input

```json
{
  "mode": "search_by_url",
  "searchUrl": "https://www.airbnb.com/s/Miami-Beach--Florida--United-States/homes",
  "checkIn": "2026-06-10",
  "checkOut": "2026-06-15",
  "adults": 2,
  "neLat": 38.78,
  "neLng": -9.1,
  "swLat": 38.69,
  "swLng": -9.23,
  "zoom": 12,
  "priceMin": 0,
  "priceMax": 0,
  "placeType": "",
  "freeCancellation": false,
  "hostId": "12345678",
  "currency": "USD",
  "language": "en",
  "maxResults": 30,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "room_id": {
    "label": "Room ID"
  },
  "title": {
    "label": "Title"
  },
  "room_type": {
    "label": "Room Type"
  },
  "person_capacity": {
    "label": "Guests"
  },
  "bedrooms": {
    "label": "Bedrooms"
  },
  "beds": {
    "label": "Beds"
  },
  "bathrooms": {
    "label": "Bathrooms"
  },
  "rating": {
    "label": "Rating"
  },
  "review_count": {
    "label": "Reviews"
  },
  "is_superhost": {
    "label": "Superhost"
  },
  "is_guest_favorite": {
    "label": "Guest Favorite"
  },
  "price_total": {
    "label": "Total Price"
  },
  "price_per_night": {
    "label": "Nightly"
  },
  "price_currency": {
    "label": "Currency"
  },
  "latitude": {
    "label": "Lat"
  },
  "longitude": {
    "label": "Lng"
  },
  "city": {
    "label": "City"
  },
  "country": {
    "label": "Country"
  },
  "host_id": {
    "label": "Host ID"
  },
  "host_name": {
    "label": "Host Name"
  },
  "record_type": {
    "label": "Record Type"
  },
  "scraped_at": {
    "label": "Scraped At"
  },
  "room_url": {
    "label": "Room URL"
  }
}
```

## About this Actor

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