# TripAdvisor Hotel Details by URL

**Use case:** 

Paste TripAdvisor hotel URLs and get full per-property detail: rating, reviews, address, phone and rank. Competitor monitoring in CSV/JSON.

## Input

```json
{
  "locationQuery": "Paris",
  "startUrls": [
    "https://www.tripadvisor.com/Hotel_Review-g187147-d188729-Reviews-Le_Bristol_Paris-Paris_Ile_de_France.html"
  ],
  "placeTypes": [
    "hotels",
    "restaurants",
    "things_to_do"
  ],
  "maxResultsPerType": 20,
  "includeDetails": true,
  "currency": "USD",
  "hotelAdults": 2,
  "hotelRooms": 1,
  "hotelMinRating": "",
  "hotelClasses": [],
  "hotelStyles": [],
  "hotelSort": "BEST_VALUE",
  "restaurantPrice": [],
  "restaurantMealTypes": [],
  "restaurantDietary": [],
  "restaurantCuisines": [],
  "restaurantRatingMin": "",
  "restaurantSort": "FEATURED",
  "cruiseDestination": "",
  "cruiseLine": "",
  "stopOnError": false
}
```

## Output

```json
{
  "name": {
    "label": "📛 Name",
    "format": "string"
  },
  "rating": {
    "label": "⭐ Rating",
    "format": "number"
  },
  "review_count": {
    "label": "🗳 Reviews",
    "format": "integer"
  },
  "price": {
    "label": "💲 Price",
    "format": "string"
  },
  "address": {
    "label": "📍 Address",
    "format": "string"
  },
  "url": {
    "label": "🔗 URL",
    "format": "string"
  }
}
```

## About this Actor

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