# Quick Douban rating snapshot for a C-pop album

**Use case:** 

Get an instant subject-only snapshot — rating, rating count, genres — for Jay Chou's Kuashidai album on Douban. Fast chart-tracking benchmark.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://music.douban.com/subject/6554435/"
    }
  ],
  "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.