# Analyze hospitality market density, pricing, and demand

**Use case:** Collect reviews & ratings

Tripadvisor Scraper maps hotels, restaurants, and attractions by city. Aggregate density, pricing, and reviews to spot supply gaps and under-served markets.

## Input

```json
{
  "query": "Lisbon",
  "startUrls": [
    {
      "url": "https://www.tripadvisor.com/Tourism-g60763-New_York_City_New_York-Vacations.html"
    }
  ],
  "maxItemsPerQuery": 10,
  "includeTags": true,
  "includeNearbyResults": false,
  "includeAttractions": true,
  "includeRestaurants": true,
  "includeHotels": true,
  "checkInDate": "2025-06-15",
  "checkOutDate": "2025-06-16",
  "includePriceOffers": false,
  "includeAiReviewsSummary": false,
  "language": "en",
  "currency": "USD",
  "maxPhotosPerPlace": 0,
  "photosType": "fromEveryone",
  "maximumLeadsEnrichmentRecords": 5,
  "leadsEnrichmentDepartments": [
    "marketing",
    "sales"
  ],
  "verifyLeadsEnrichmentEmails": true
}
```

## Output

```json
{
  "image": {
    "label": "Image"
  },
  "type": {
    "label": "Type"
  },
  "name": {
    "label": "Name"
  },
  "rankingPosition": {
    "label": "Ranking position"
  },
  "priceLevel": {
    "label": "Price level"
  },
  "category": {
    "label": "Category"
  },
  "rating": {
    "label": "Rating"
  },
  "phone": {
    "label": "Phone"
  },
  "address": {
    "label": "Address"
  },
  "email": {
    "label": "Email"
  },
  "webUrl": {
    "label": "Web url"
  },
  "website": {
    "label": "Website"
  },
  "rankingDenominator": {
    "label": "Ranking denominator"
  },
  "rankingString": {
    "label": "Ranking string"
  },
  "numberOfReviews": {
    "label": "Number of reviews"
  }
}
```

## About this Actor

This example demonstrates how to use [Tripadvisor Scraper](https://apify.com/maxcopell/tripadvisor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/maxcopell/tripadvisor) to learn more, explore other use cases, and run it yourself.