# Export Tripadvisor Reviews to CSV or JSON

**Use case:** 

Export every review of a place: snippet, rating, reviewDate, tripDate, tripType, votes and authorName. Run once or on a schedule. No extension needed.

## Input

```json
{
  "search_mode": "reviews",
  "query": "hotels in paris",
  "place_id": "143336",
  "place_types": [],
  "max_results": 100,
  "tripadvisor_domain": "www.tripadvisor.com"
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "snippet": {
    "label": "Review text",
    "format": "string"
  },
  "reviewDate": {
    "label": "Review date",
    "format": "string"
  },
  "tripType": {
    "label": "Trip type",
    "format": "string"
  },
  "authorName": {
    "label": "Author name",
    "format": "string"
  },
  "votes": {
    "label": "Helpful votes",
    "format": "integer"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

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