# Quick rating benchmark for a Chinese palace drama

**Use case:** 

Pull just the subject record — rating, rating count, genres, year — for Empresses in the Palace on Douban. Fast streaming-acquisition benchmark.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://movie.douban.com/subject/4922787/"
    }
  ],
  "scrapeSubjectInfo": true,
  "scrapeShortComments": false,
  "scrapeLongReviews": false,
  "maxCommentsPerSubject": 200,
  "maxReviewsPerSubject": 50,
  "fetchFullReviewText": true,
  "tagSentiment": true,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  },
  "maxConcurrency": 2
}
```

## Output

```json
{
  "record_type": {
    "label": "Record type",
    "format": "string"
  },
  "subject_type": {
    "label": "Subject type",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "year": {
    "label": "Year",
    "format": "integer"
  },
  "rating_average": {
    "label": "Average rating",
    "format": "number"
  },
  "rating_count": {
    "label": "Rating count",
    "format": "integer"
  },
  "genres": {
    "label": "Genres",
    "format": "array"
  },
  "source_url": {
    "label": "Source URL",
    "format": "string"
  },
  "scraped_at": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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