# Douban Movie Short Comments Scraper

**Use case:** 

Export up to 500 Douban short comments per film with star rating, date, useful votes and full text. Ready for Chinese sentiment analysis in CSV.

## Input

```json
{
  "mode": "comments",
  "collection": "top250",
  "searchQueries": [
    "科幻"
  ],
  "startUrls": [
    {
      "url": "https://movie.douban.com/subject/1292052/"
    }
  ],
  "tag": "",
  "city": "beijing",
  "maxItems": 500,
  "includeDetails": true,
  "includeCast": true,
  "includeAwards": true,
  "maxPerSubject": 500,
  "detailConcurrency": 4,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "subjectTitle": {
    "label": "Title"
  },
  "authorName": {
    "label": "Author"
  },
  "rating": {
    "label": "Stars"
  },
  "ratingLabel": {
    "label": "Rating label"
  },
  "date": {
    "label": "Posted"
  },
  "usefulVotes": {
    "label": "Useful"
  },
  "content": {
    "label": "Comment"
  },
  "authorUrl": {
    "label": "Author URL"
  },
  "commentUrl": {
    "label": "Comment URL"
  }
}
```

## About this Actor

This example demonstrates how to use [Douban Scraper - Movies, TV, Books, Music & Reviews](https://apify.com/scrapesage/douban-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapesage/douban-scraper) to learn more, explore other use cases, and run it yourself.