# Build a Travel Research Database with TripAdvisor

**Use case:** 

Build a travel content database from TripAdvisor — hotel and venue names, ratings, review counts, rankings, prices, addresses, and images. For travel publishers

## Input

```json
{
  "searchQuery": "london hotels",
  "searchType": "hotels",
  "maxResults": 10,
  "includeReviews": false,
  "maxReviewsPerListing": 5,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "name": {
    "label": "Name",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "text"
  },
  "reviews_count": {
    "label": "Reviews",
    "format": "text"
  },
  "price_range": {
    "label": "Price Range",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "categories": {
    "label": "Categories",
    "format": "text"
  },
  "ranking": {
    "label": "Ranking",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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