# Douban Film Cast & Crew Profile Scraper

**Use case:** 

Extract Douban people profiles for a film's cast and crew: Chinese and original name, gender, birth date and place, occupations, IMDb ID, followers.

## Input

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

## Output

```json
{
  "nameChinese": {
    "label": "Name"
  },
  "nameOriginal": {
    "label": "Original name"
  },
  "gender": {
    "label": "Gender"
  },
  "birthDate": {
    "label": "Born"
  },
  "birthPlace": {
    "label": "Birthplace"
  },
  "occupations": {
    "label": "Occupations"
  },
  "imdbId": {
    "label": "IMDb ID"
  },
  "followerCount": {
    "label": "Followers"
  },
  "knownForTitles": {
    "label": "Known for"
  },
  "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.