# Douban Music Top 250 Albums Scraper

**Use case:** 

Export Douban's Top 250 music albums with performers, release date, genre, album type, medium, rating and vote count. Chinese music chart research.

## Input

```json
{
  "mode": "music",
  "collection": "top250",
  "searchQueries": [
    "科幻"
  ],
  "startUrls": [],
  "tag": "",
  "city": "beijing",
  "maxItems": 250,
  "includeDetails": true,
  "includeCast": true,
  "includeAwards": true,
  "maxPerSubject": 100,
  "detailConcurrency": 4,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "title": {
    "label": "Album"
  },
  "performers": {
    "label": "Performer"
  },
  "releaseDate": {
    "label": "Released"
  },
  "genre": {
    "label": "Genre"
  },
  "albumType": {
    "label": "Type"
  },
  "medium": {
    "label": "Medium"
  },
  "rating": {
    "label": "Rating"
  },
  "ratingVotes": {
    "label": "Votes"
  },
  "rank": {
    "label": "Rank"
  },
  "url": {
    "label": "Douban 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.