# Monitor Airbnb Pricing in a Market

**Use case:** 

Monitor Airbnb nightly pricing and availability in a market for revenue and rate research. Export to CSV, JSON or Excel.

## Input

```json
{
  "search": [
    "San Diego, CA"
  ],
  "adults": 1,
  "children": 0,
  "infants": 0,
  "pets": 0,
  "maxListings": 200,
  "currency": "USD",
  "includeListingDetails": true,
  "includeImages": true,
  "includeAmenities": true,
  "includeHostInfo": true,
  "includeReviewsSummary": true,
  "useApifyProxy": true
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "pricePerNight": {
    "label": "Price/night",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "totalPrice": {
    "label": "Total Price",
    "format": "number"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewsCount": {
    "label": "Reviews",
    "format": "number"
  },
  "isSuperhost": {
    "label": "Superhost",
    "format": "boolean"
  },
  "guestCapacity": {
    "label": "Guests",
    "format": "number"
  },
  "bedrooms": {
    "label": "Bedrooms",
    "format": "number"
  },
  "listingUrl": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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