# Airbnb Scraper — Listings, Prices & Reviews by City

**Use case:** 

Search Airbnb by city and export listings with nightly prices, ratings, reviews, amenities, and host info. Built for short-term rental and pricing research.

## Input

```json
{
  "location": [
    "Barcelona, Spain"
  ],
  "scrapeAvailability": false,
  "maxItems": 50,
  "currency": "USD",
  "adults": 2,
  "country": "US"
}
```

## Output

```json
{
  "name": {
    "label": "Name",
    "format": "text"
  },
  "pricePerNight": {
    "label": "Price/night",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewsCount": {
    "label": "Reviews",
    "format": "number"
  },
  "roomType": {
    "label": "Type",
    "format": "text"
  },
  "latitude": {
    "label": "Lat",
    "format": "number"
  },
  "longitude": {
    "label": "Lng",
    "format": "number"
  },
  "listingId": {
    "label": "Listing ID",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "image": {
    "label": "Image",
    "format": "image"
  }
}
```

## About this Actor

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