# Scrape Airbnb Listings for Market Research

**Use case:** 

Pull Airbnb listings for any city with price per night, total price, rating, review count, room type, host, and map coordinates. Build a structured short-term-r

## Input

```json
{
  "location": "Lisbon, Portugal",
  "listingUrl": "",
  "maxResults": 10,
  "currency": "USD",
  "checkIn": "",
  "checkOut": "",
  "adults": 0,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "name": {
    "label": "Name",
    "format": "text"
  },
  "room_type": {
    "label": "Room Type",
    "format": "text"
  },
  "price_per_night": {
    "label": "Price / Night",
    "format": "text"
  },
  "total_price": {
    "label": "Total Price",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "review_count": {
    "label": "Reviews",
    "format": "number"
  },
  "lat": {
    "label": "Latitude",
    "format": "number"
  },
  "lng": {
    "label": "Longitude",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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