# Scrape TripAdvisor Hotel Amenities

**Use case:** 

Pull the full amenities list for TripAdvisor hotels (pool, spa, parking, wifi and more) plus rating and price. JSON or CSV.

## Input

```json
{
  "mode": "reviews",
  "startUrls": [
    {
      "url": "https://www.tripadvisor.com/Hotel_Review-g187497-d1465497-Reviews-W_Barcelona-Barcelona_Catalonia.html"
    }
  ],
  "maxReviews": 200,
  "reviewLanguages": [
    "all"
  ],
  "minRating": 1,
  "maxRating": 5,
  "placeTypes": [
    "hotels"
  ],
  "maxPlaces": 20,
  "discoveryDepth": "quick",
  "includePhotos": false,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "placeId": {
    "label": "Place ID",
    "format": "integer"
  },
  "placeType": {
    "label": "Type",
    "format": "string"
  },
  "name": {
    "label": "Name",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "subratings": {
    "label": "Category subratings",
    "format": "object"
  },
  "numReviews": {
    "label": "Reviews",
    "format": "integer"
  },
  "rank": {
    "label": "Rank",
    "format": "integer"
  },
  "rankOutOf": {
    "label": "Out of",
    "format": "integer"
  },
  "priceRange": {
    "label": "Price range",
    "format": "string"
  },
  "priceLevel": {
    "label": "Price level",
    "format": "string"
  },
  "hotelClass": {
    "label": "Hotel class",
    "format": "number"
  },
  "aiReviewSummary": {
    "label": "AI review summary",
    "format": "object"
  },
  "address": {
    "label": "Address",
    "format": "string"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  },
  "amenities": {
    "label": "Amenities",
    "format": "array"
  },
  "photos": {
    "label": "Photos",
    "format": "array"
  },
  "phone": {
    "label": "Phone",
    "format": "string"
  },
  "website": {
    "label": "Website",
    "format": "string"
  },
  "webUrl": {
    "label": "TripAdvisor URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [TripAdvisor Hotel Reviews API](https://apify.com/factden/tripadvisor-hotel-reviews-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/factden/tripadvisor-hotel-reviews-api) to learn more, explore other use cases, and run it yourself.