China's social platforms — Weibo, RedNote (Xiaohongshu), Bilibili, Douban — are where a billion people talk about brands, products and news every day. For anyone doing market research, brand monitoring, or alt-data, they're also a black box: most Western scraping tools don't cover them, and the ones that do usually break on the anti-bot walls.
Here's a practical, keyless way to pull two things developers actually ask for — what's trending right now, and who's mentioning a brand — without maintaining a browser farm.
What's trending on Weibo right now
Weibo's hot-search board (微博热搜) is the single best real-time pulse of the Chinese internet. Here's the live top 10, pulled today (2026‑07‑17) in one run, with a rough English gloss:
| # | Trending topic | English gloss | Heat |
|---|---|---|---|
| 1 | 年轻人一定要对钱有概念 | "Young people must get a sense of money" | 218,466 |
| 2 | 功夫女足让韩国人破防了 | China women's football stuns Korea | 198,056 |
| 3 | 智能体互信互联互操作全球合作倡议 | Global initiative for AI‑agent interoperability | 141,701 |
| 4 | 雅迪把717骑行节搬进欢乐谷 | Yadea brings its 7·17 cycling festival to a theme park | 138,658 |
| 5 | 看不见的咖啡因终于可视化了 | "Invisible caffeine, finally visualized" | 98,229 |
| 6 | 西班牙晒大力神杯 | Spain shows off the World Cup trophy | 95,479 |
| 7 | 歌手排名 | Singer rankings (music show) | 67,683 |
| 8 | 青岛与世界干杯 | Qingdao toasts the world (beer festival) | 51,537 |
| 9 | 阿根廷决赛遇苦主裁判 | Argentina's "nemesis referee" in the final | 46,982 |
| 10 | 百花杀热度 | Baihua Sha drama buzz | 46,722 |
Notice #4: that's a brand — Yadea, the e‑bike maker — riding a trending hashtag off a live event. That's exactly the signal a brand or agency wants to catch the moment it happens, not a week later in a report.
Pulling this board is keyless (no login, no cookie):
{
"mode": "hot_search"
}
That's the entire input. You get rank, title, hotValue, url and a freshness flag per topic. Actor: Weibo Scraper.
To turn a one‑off pull into a hands‑off feed, switch on hot_search_delta (or deltaMode for keyword search) plus a daily Apify Schedule — each run returns only what changed (new / rising / dropped topics), so you build a gap‑free trend history and pay only for genuinely new items.
Watching a brand across every platform at once
Trends are the top of the funnel. The recurring question is narrower: what are people saying about my brand this week, everywhere? Doing that means running five different scrapers with five different anti‑bot quirks and stitching the output together.
Chinese Brand Monitor collapses that into one scheduled call. Give it a brand name and it watches Weibo + RedNote + Bilibili + Douban + Xueqiu together, returns a unified mention feed with a bull/bear sentiment score per mention, and — the part people miss — it auto‑localizes the brand name: pass Nike and it also searches 耐克, Tesla → 特斯拉, so you don't lose the ~half of mentions that use the Chinese name.
{
"brand": "Nike",
"platforms": ["weibo", "rednote", "bilibili", "douban"],
"sentimentAnalysis": true
}
Prefer the raw platforms directly? They're standalone too:
RedNote / Xiaohongshu · Bilibili · Weibo.
Why keyless matters
Every actor above is built to run on plain datacenter proxies for the public surfaces — no phone‑verified account to babysit, no login farm. Keyword search on RedNote and Weibo can be deepened with a cookieString you supply, but the trend boards, comments and public profiles work out of the box. You pay per result (or per genuinely‑new result in delta mode), so a quiet day costs nothing.
Wiring it into a pipeline
The stickiest setup: an Apify Schedule (daily/hourly) + a webhook or a Make/Zapier/Slack integration, so each finished run pushes straight into your warehouse or a channel. Pair it with delta mode and the monitor runs and delivers itself — no one opens a console.
If you're tracking a brand, a category, or the Chinese internet's mood in general, that's the whole loop: trends board for discovery, brand monitor for the narrow question, delta + schedule to keep it fresh.
Questions or a field you need? Open an issue on any of the actor pages — happy to help.
Top comments (0)