# 猫途鹰评论API：酒店与餐厅评论抓取

**Use case:** 

输入placeId批量获取猫途鹰完整评论：标题、正文、评分、点评日期、出行类型与作者信息，自动翻页输出JSON。按结果计费，支持MCP接入Claude等AI助手。

## Input

```json
{
  "search_mode": "reviews",
  "query": "hotels in paris",
  "place_id": "143336",
  "place_types": [],
  "max_results": 30,
  "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.