Douban Scraper — Chinese Movie & TV Ratings
Pricing
from $2.10 / 1,000 results
Douban Scraper — Chinese Movie & TV Ratings
Scrape Douban, China's largest film and television review community. Extract title, Douban rating, subject ID and link, poster image, episode information and whether a title is new or streamable, across popular, newest, top-rated and hidden-gem listings.
Pricing
from $2.10 / 1,000 results
Rating
0.0
(0)
Developer
Logiover
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
2 days ago
Last modified
Categories
Share
China's largest film and television community in rows: title, Douban rating, subject ID and link, poster, episode progress and whether a title is new or streamable — films and TV series.
What does the Douban Scraper do?
This Actor collects titles from Douban, the review community at the centre of Chinese film and television culture. It returns one row per film or series with the Douban rating — the number Chinese audiences actually cite, and one that regularly disagrees with Western aggregators on the same title.
Getting a large set out takes some care. The listing endpoint answers one tag at a time and stops handing out rows a few hundred deep, so asking it for "everything" quietly returns the same opening block over and over. This Actor cuts the crawl into one query per tag and walks the tags in turn, which is what reaches past that ceiling.
Who is it for?
- Film and TV distributors assessing how a title landed with Chinese audiences.
- Streaming and licensing teams building a catalogue view of the Chinese market.
- Market researchers comparing Chinese reception against Western ratings.
- Media analysts and journalists covering Chinese entertainment.
- Academics studying cross-cultural differences in audience reception.
- Recommendation and catalogue platforms seeding Chinese-language title data.
Use cases
- Build a rated catalogue of Chinese films and series.
- Compare a title's Douban score against IMDb or Letterboxd for the same film.
- Track newly released titles and their ratings as they settle.
- Find highly rated but little-known titles through the hidden-gems tag.
- Separate domestic from imported titles using the language tags.
- Watch which currently-airing series are streamable and how far along they are.
- Feed an AI agent Chinese ratings data for entertainment questions.
Why use this Douban Scraper?
- Tag-partitioned crawling that reaches past the listing endpoint's paging ceiling.
- Ratings kept honest — an unrated title reports as empty rather than as a score of zero. See the FAQ.
- Films and TV series from one Actor.
- Any tag you like, or the eight main ones by default.
- Direct links to each title's Douban page.
- Keyless, login-free and proxy-free.
What data can you extract?
One row per title. Anything the source left blank comes back as null.
| Field | Description |
|---|---|
subjectId | Douban subject ID |
url | Link to the Douban page |
title | Title, in Chinese |
rating | Douban rating out of 10 |
mediaType | Movie or TV |
tag | The tag this row was found under |
episodeInfo | Episode progress, for airing series |
isNew | Whether Douban marks it as new |
isPlayable | Whether it is streamable on Douban |
posterUrl | Poster image |
scrapedAt | ISO timestamp of collection |
Sample output
{"subjectId": "36810153","url": "https://movie.douban.com/subject/36810153/","title": "花开锦绣","rating": null,"mediaType": "TV","tag": "热门","episodeInfo": "更新至29集","isNew": "No","isPlayable": "Yes","posterUrl": "https://img3.doubanio.com/view/photo/s_ratio_poster/public/p2934718593.jpg","scrapedAt": "2026-08-23T11:37:29.949Z"}
How to use the Douban Scraper
Option A — the main tags
Leave Tags empty and the crawl walks the eight main ones: 热门 (popular), 最新 (newest), 豆瓣高分 (top rated), 冷门佳片 (hidden gems), 华语, 欧美, 韩国 and 日本.
Option B — specific tags
Put your own comma-separated tags in Chinese, exactly as Douban writes them — for example 豆瓣高分,冷门佳片.
Option C — TV series
Set Media type to TV series. Tags differ slightly for television, so try 热门 and 国产剧.
Input parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
mediaType | select | movie | Films or TV series |
tags | string | (empty) | Comma-separated Chinese tags; empty walks the eight main ones |
maxResults | integer | 1000 | Stop after this many titles (max 20,000) |
proxyConfiguration | object | (off) | Optional; the endpoint answers without one |
Tips for best results
- More tags means more titles. Each tag yields a few hundred rows before the endpoint stops advancing, so the way to a large export is breadth of tags, not a bigger maximum.
- Treat an empty
ratingas unrated, not as zero. Douban withholds a score until a title has enough votes, which is why new releases arrive blank. subjectIdis the join key to any other Douban data and is stable; the title is not, since Chinese releases are often renamed.tagis kept on every row so a combined multi-tag export stays segmented — the same title can legitimately appear under two tags.episodeInfoonly exists for airing series, so expect it on a small share of TV rows and none of the film rows.
Integrations
Connect the dataset to Make, Zapier, Airbyte, Google Sheets, Slack, GitHub or any HTTP endpoint through Apify integrations, or schedule a run and push results into a warehouse with a webhook.
API usage
from apify_client import ApifyClientclient = ApifyClient("<YOUR_API_TOKEN>")run = client.actor("logiover/douban-movie-scraper").call(run_input={"mediaType": "movie","tags": "豆瓣高分,冷门佳片","maxResults": 1000,})rows = list(client.dataset(run["defaultDatasetId"]).iterate_items())rated = [r for r in rows if r["rating"]]top = sorted(rated, key=lambda r: r["rating"], reverse=True)[:5]for r in top:print(r["rating"], r["title"], r["url"])
Use with AI agents (MCP)
The Actor is callable from the Apify MCP server, so an assistant can pull Chinese film and TV ratings directly and answer questions about reception in that market.
FAQ
Do I need a Douban account or API key?
No. This Actor reads Douban's public listing endpoint; there is nothing to register.
How many titles can one run return?
Up to 20,000. Because each tag stops yielding after a few hundred rows, the practical total depends on how many tags you crawl — the default eight comfortably return several hundred.
Why crawl tag by tag instead of just paging?
Because paging alone does not work. The endpoint keeps answering but stops advancing past a few hundred rows and re-serves the opening block, so a naive page loop collects duplicates and looks like it succeeded. Splitting by tag keeps each query inside the window it will actually page through.
Why is the rating sometimes empty?
Because Douban has not published one yet. It withholds a score until a title gathers enough votes, and reports 0 in the meantime — which is "unrated", not a score of zero, so it is stored as empty rather than as a misleading number.
Are titles in Chinese?
Yes. Douban is a Chinese-language site and titles come back exactly as published, in Simplified Chinese. Foreign films appear under their Chinese release names.
What tags can I use?
Any that Douban itself uses, written in Chinese — 热门, 最新, 豆瓣高分, 冷门佳片, 华语, 欧美, 韩国, 日本 for films, and 国产剧, 美剧, 日剧, 韩剧 among others for television.
Does it collect reviews or cast?
No. This Actor collects the listing record: title, rating, type and links. Reviews and full credits live on each title's own page, and every row carries a url to it.
Can I export to CSV or Excel?
Yes — every run's dataset exports to JSON, CSV, Excel, XML or JSONL.
How fresh is the data?
Each run reads the listing live, so ratings are as current as Douban's own at the moment you run it.
Why did my run return zero titles?
Usually a tag that Douban does not recognise. Tags are Chinese words and must match exactly; start with the defaults and adjust from there.
Is it legal to scrape Douban?
This Actor reads Douban's public listing endpoint — no accounts, no logins, no private content and no user reviews. Titles, aggregate ratings and poster links are catalogue information published for public view. Aggregate ratings are not personal data, but you remain responsible for how you use the results and for respecting the platform's terms in your own jurisdiction.
Related scrapers
- Letterboxd Film Review Scraper — Western film ratings and reviews.
- IMDb Scraper — titles, ratings and credits.
- MyAnimeList Scraper — anime and manga ratings.
- Bilibili Scraper — trending videos from China's video community.