# Scrape TripAdvisor in a Local Language

**Use case:** 

Switch locale to pull TripAdvisor names, descriptions and reviews in a local language — for non-English travel sites and honest sentiment analysis.

## Input

```json
{
  "search": [
    "Madrid"
  ],
  "category": "all",
  "maxItems": 30,
  "includeReviews": true,
  "maxReviewsPerPoi": 30,
  "locale": "es",
  "maxPois": 30,
  "maxRetries": 3,
  "maxConcurrency": 10
}
```

## Output

```json
{
  "__type": {
    "label": "Type",
    "format": "array"
  },
  "name": {
    "label": "Name",
    "format": "array"
  },
  "rating": {
    "label": "Rating",
    "format": "array"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "array"
  },
  "reviewsScraped": {
    "label": "Scraped",
    "format": "array"
  },
  "ranking": {
    "label": "Ranking",
    "format": "array"
  },
  "priceLevel": {
    "label": "Price",
    "format": "array"
  },
  "priceFrom": {
    "label": "From",
    "format": "array"
  },
  "city": {
    "label": "City",
    "format": "array"
  },
  "country": {
    "label": "Country",
    "format": "array"
  },
  "url": {
    "label": "URL",
    "format": "array"
  }
}
```

## About this Actor

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