# TripAdvisor reviews to Zapier/Make webhook

**Use case:** 

POST each new review to Make, Zapier or n8n. One JSON body per review for no-code automation pipelines.

## Input

```json
{
  "startUrls": [
    "https://www.tripadvisor.com/Restaurant_Review-g60763-d477069-Reviews-Carmine_s_Italian_Restaurant_Times_Square-New_York_City_New_York.html"
  ],
  "maxReviewsPerPlace": 25,
  "stripPersonalData": true,
  "minRating": 0,
  "maxRating": 5,
  "sortOutput": "newest",
  "monitorMode": true,
  "alertOnNewReview": true,
  "webhookUrl": "https://hook.eu1.make.com/abc123",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  },
  "diagnose": false
}
```

## Output

```json
{
  "place_name": {
    "label": "Place",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "text": {
    "label": "Review",
    "format": "string"
  },
  "published_date": {
    "label": "Published",
    "format": "string"
  },
  "stay_date": {
    "label": "Stay/visit",
    "format": "string"
  },
  "trip_type": {
    "label": "Trip type",
    "format": "string"
  },
  "helpful_votes": {
    "label": "Helpful",
    "format": "integer"
  },
  "language": {
    "label": "Lang",
    "format": "string"
  },
  "review_url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Tripadvisor Reviews Scraper — Most Comprehensive](https://apify.com/scrapersdelight/tripadvisor-reviews-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapersdelight/tripadvisor-reviews-scraper) to learn more, explore other use cases, and run it yourself.