# 飞猪酒店评论采集 · Fliggy Reviews Scraper

**Use case:** 

采集飞猪酒店的用户评论：评分、评论内容、分项评分、入住日期、房型与点评人归属地，导出 JSON / CSV。Scrape Fliggy hotel reviews by link or ID.

## Input

```json
{
  "mode": "reviews",
  "startUrls": [
    "https://www.fliggy.com/jiudian/detail/810100/10023497"
  ],
  "searchCities": [],
  "sortBy": "newest",
  "maxReviews": 500,
  "includeReplies": false,
  "maxHotels": 20,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "hotelName": {
    "label": "Hotel",
    "format": "string"
  },
  "reviewId": {
    "label": "Review ID",
    "format": "string"
  },
  "reviewer": {
    "label": "Reviewer",
    "format": "object"
  },
  "overallRating": {
    "label": "Rating (/5)",
    "format": "number"
  },
  "ratingLabel": {
    "label": "Rating label",
    "format": "string"
  },
  "subRatings": {
    "label": "Sub-ratings",
    "format": "array"
  },
  "submittedAt": {
    "label": "Submitted",
    "format": "string"
  },
  "reviewText": {
    "label": "Review",
    "format": "string"
  },
  "replies": {
    "label": "Replies",
    "format": "array"
  },
  "checkInDate": {
    "label": "Check-in",
    "format": "string"
  },
  "roomName": {
    "label": "Room",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Fliggy Hotel Reviews Scraper - 飞猪 Hotels](https://apify.com/factden/fliggy-hotel-reviews-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/factden/fliggy-hotel-reviews-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/factden/fliggy-hotel-reviews-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
