VOOZH about

URL: https://apify.com/zhorex/weibo-scraper

โ‡ฑ Weibo Scraper โ€” AI Training & Brand Sentiment 2026 ยท Apify


๐Ÿ‘ Weibo Scraper - Chinese Social Intelligence avatar

Weibo Scraper - Chinese Social Intelligence

Pricing

from $5.00 / 1,000 item scrapeds

Go to Apify Store

Weibo Scraper - Chinese Social Intelligence

Extract Chinese public opinion, trending topics, brand sentiment, and creator data from Weibo (ๅพฎๅš) โ€” China's largest microblog with 580M+ users. Built for AI training corpora, Chinese equity research, and brand monitoring. No login, no browser. Part of the Chinese Digital Intelligence Suite.

Pricing

from $5.00 / 1,000 item scrapeds

Rating

1.0

(1)

Developer

๐Ÿ‘ Sami

Sami

Maintained by Community

Actor stats

2

Bookmarked

170

Total users

87

Monthly active users

8 days ago

Last modified

Share

Extract Chinese public opinion, trending topics, and real-time consumer sentiment from Weibo (ๅพฎๅš) โ€” China's dominant microblog with 580M+ monthly users producing the densest public-opinion signal in China. Built for AI training corpora, Chinese consumer equity research alt-data, brand monitoring agencies, and academic NLP teams. No login, no API key, no VPN. The only quality Weibo scraper on Apify.

How to scrape Weibo in 3 easy steps

  1. Go to the Weibo Scraper page on Apify and click "Try for free"
  2. Configure your input โ€” choose a mode (hot_search, hot_search_delta, post_comments, search, or user_posts), enter your keywords or post IDs, and set the number of results
  3. Click "Run", wait for the scraper to finish, then download your data in JSON, CSV, or Excel format

No coding required. No API key. Works with Apify's free plan.

๐Ÿข Sourcing a Chinese-language LLM training corpus โ€” or running Weibo at production scale?

This Actor pulls Weibo at corpus scale: hundreds of thousands to millions of clean, structured posts, on a schedule โ€” drop-in for AI-training pipelines, quant alt-data signals, and brand-intelligence warehouses. Pay-per-result, no contract.

For high-volume / enterprise I offer bulk & volume pricing, custom output schemas matched to your data warehouse, dedicated proxy throughput for sustained million-row pulls, scheduled managed feeds, and a schema-stability SLA (no breaking changes without 30-day notice).

โ†’ DM me on Apify, open an Issue titled "Enterprise inquiry", or email samimassis2002@gmail.com (subject "Weibo enterprise").

Part of the Chinese Digital Intelligence Suite

The only Apify developer specializing in Chinese-platform intelligence โ€” built specifically for AI training data buyers, equity research analysts covering Chinese consumer stocks, and brand monitoring teams:

  • ๐Ÿ†• Chinese Brand Monitor โ€” Cross-platform brand mention aggregator (Weibo + RedNote + Bilibili + Douban + Xueqiu in one normalized feed, sentiment-tagged, cross-platform deduped โ€” $0.045/mention)
  • Weibo Scraper โ€” You are here (microblogging, hot search, real-time public opinion)
  • Bilibili Scraper โ€” China's video platform: danmaku, comments, Gen-Z creator sentiment
  • RedNote (Xiaohongshu) Scraper โ€” China's Instagram + Pinterest (lifestyle, consumer reviews)
  • RedNote Shop Scraper โ€” RedShop e-commerce (products, vendors, prices)
  • Douban Scraper โ€” Long-form reviews (movies/books/music), group discussions
  • Xueqiu Scraper โ€” Chinese stock-discussion sentiment, cashtag indexing

Together, these cover the five pillars of Chinese consumer signal: microblog opinion, video sentiment, lifestyle reviews, e-commerce, and long-form opinion. Most analysts buy 2-4 of these for cross-platform coverage. Building a cross-platform brand monitoring pipeline? The Chinese Brand Monitor aggregator gives you all 5 platforms in one normalized output โ€” saves 4-6 hours of engineering vs. orchestrating individual scrapers.

Who buys this scraper

Buyer profileUse caseTypical spend
AI / LLM training data teamsReal-time Chinese microblog text for SFT corpora + current-events grounding$200-1,500/mo
Hedge fund / equity research desksBrand mention velocity, hot-search momentum as alt-data on Chinese consumer stocks (POP MART, BYD, Anta, Yum China, BeiGene)$100-500/mo
Brand monitoring agenciesReal-time tracking of Western brand mentions, crisis detection on China's public square$200-800/mo
Geopolitical / policy analystsMonitor Chinese public discourse, narrative tracking, policy response signal$150-600/mo
Academic NLP / sentiment researchersChinese microblog corpus, labeled sentiment data for classifier training$50-200/mo
Journalists / investigative teamsSource Chinese public opinion data for reporting on consumer brands, viral events$50-150/mo

What is Weibo?

Weibo (ๅพฎๅš) is China's dominant microblogging platform โ€” think Twitter meets Instagram. With 580M+ monthly active users, it's where Chinese public opinion forms, brands communicate, and news breaks. Government officials, celebrities, and brands all maintain active Weibo accounts. For data buyers, Weibo's hot search ranking is the closest thing China has to a real-time barometer of public attention โ€” a leading indicator that precedes earnings-call surprises and brand events by 1-4 weeks.

Weibo API alternative

There is no official public Weibo API available for international developers. Weibo's developer API requires a Chinese business license, has severe rate limits, and returns limited data. This Weibo Scraper is the best Weibo API alternative in 2026 โ€” it extracts trending topics, posts, comments, and user profiles without any official API access. No Chinese business registration needed.

Use Cases by buyer

WhoWhy they use it
AI / LLM training data teamsReal-time Chinese-language microblog text for SFT, RLHF training, and current-events grounding for Chinese LLMs
Equity research / hedge fundsHot-search velocity + brand mention spikes as alt-data leading indicator on Chinese consumer stocks (3-50ร— cheaper than Bloomberg Chinese consumer feeds)
Brand monitoring teamsReal-time tracking of brand mentions, viral content, and crisis detection on China's public square
Geopolitical / policy analystsMonitor public discourse on policy, international topics, and narrative trends
PR & communicationsTrack brand mentions and sentiment shifts in real time
Competitive intelligenceTrack Chinese competitor announcements, product launches, and audience reception
Influencer marketingFind and evaluate Weibo KOLs by followers, engagement, verification status
JournalismAccess Chinese public opinion data for investigative reporting
Academic researchPre-built Chinese microblog corpus with engagement metrics for NLP and sociology studies

Scrape Weibo with Python, JavaScript, or no code

You can use the Weibo Scraper directly from the Apify Console (no code), or integrate it into your own scripts with Python or JavaScript.

Python

from apify_client import ApifyClient
client = ApifyClient("YOUR_API_TOKEN")
run = client.actor("zhorex/weibo-scraper").call(run_input={
"mode":"hot_search",
"maxResults":50
})
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item)

JavaScript

import{ ApifyClient }from'apify-client';
const client =newApifyClient({token:'YOUR_API_TOKEN'});
const run =await client.actor('zhorex/weibo-scraper').call({
mode:'hot_search',
maxResults:50,
});
const{ items }=await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item)=> console.log(item));

Using the raw REST API (Postman / curl)

โš ๏ธ The run endpoint is asynchronous โ€” its response is the run object (IDs + status), NOT your scraped data. If you POST to /acts/.../runs you get back something like { "data": { "status": "READY", "defaultDatasetId": "โ€ฆ" } } with no results in it โ€” that's expected, the run hasn't finished yet. The records land in the run's dataset, not in that response. (The containerUrl link is the live container; once a run finishes it just shows "run has already finished with status SUCCEEDED" โ€” that means success, it is not where the data lives.)

Easiest โ€” one call that waits for the run and returns the records directly:

curl-X POST "https://api.apify.com/v2/acts/zhorex~weibo-scraper/run-sync-get-dataset-items?token=YOUR_API_TOKEN"\
-H"Content-Type: application/json"\
-d'{"mode":"hot_search","maxResults":50}'

The response body is the JSON array of records โ€” no second call needed.

Or async โ€” start the run, then fetch the dataset once it finishes:

# 1) start the run โ€” note the "defaultDatasetId" in the response
curl-X POST "https://api.apify.com/v2/acts/zhorex~weibo-scraper/runs?token=YOUR_API_TOKEN"\
-H"Content-Type: application/json"-d'{"mode":"hot_search","maxResults":50}'
# 2) when the run status is SUCCEEDED, fetch the records from its dataset
curl"https://api.apify.com/v2/datasets/DEFAULT_DATASET_ID/items?token=YOUR_API_TOKEN"

๐Ÿ’ก In the Apify Console you can also open any run and click the Output / Storage โ†’ Dataset tab to view and download the same data as JSON / CSV / Excel.

Features

ModeWhat it doesCookies needed?
Search PostsFind posts by keyword โ€” returns query-relevant resultsNo
Hot Search / TrendingReal-time trending topics with heat scores and categoriesNo
Hot Search Delta ๐Ÿ†•Scheduled trend monitor โ€” what's new / rising / falling / dropped vs the last run (rank velocity, time-on-board, peaks)No
Post CommentsComments + post detail with engagement metricsNo
User PostsUser profile + posts from specific accountsFor posts only
  • No browser needed โ€” Pure HTTP, runs in 256MB RAM
  • No VPN needed โ€” Globally accessible endpoints
  • Automatic session โ€” Visitor cookies obtained automatically
  • Rate-limit handling โ€” Exponential backoff on 418/429 errors
  • ๐Ÿ†• Sentiment scoring (optional) โ€” set sentimentAnalysis: true to tag every post & comment with Chinese sentiment: polarity (positive/neutral/negative) + a โˆ’1.0โ€ฆ+1.0 score (SnowNLP model for Chinese text, keyword fallback for English). Built for brand-sentiment tracking & alt-data pipelines. Loads a model, so run with memory โ‰ฅ512 MB when enabled.
  • ๐Ÿ†• Auto-localize brand search โ€” search a Latin brand name (e.g. Nike) and the Actor automatically also searches its Chinese name (่€ๅ…‹), then merges and dedupes the results โ€” full native recall even when you search in English, capped at maxResults (no extra cost). On by default; add custom variants via searchAliases.

How to Use

1. Trending Topics (no cookies needed)

Get the current Weibo hot search โ€” the real-time pulse of Chinese internet.

{
"mode":"hot_search",
"maxResults":50
}

2. Post Comments (no cookies needed)

Extract comments from specific posts. Provide post IDs (mid) or detail URLs.

{
"mode":"post_comments",
"postIds":["5285773987283226"],
"maxComments":50
}

3. Search Posts

Search by keyword in Chinese or English. Returns query-relevant results โ€” no cookies needed.

๐Ÿ’ก Brand/topic monitoring โ€” autoLocalize does the Chineseโ†”Latin step for you. Weibo indexes by Chinese text, so ่€ๅ…‹ returns more posts than Nike. With autoLocalize on (the default), searching a common Latin brand name automatically also searches its Chinese name and merges the results โ€” full native recall without thinking about it, capped at maxResults so it costs no extra. For brands outside the built-in dictionary, add the Chinese term yourself via searchAliases. (Few results for an English keyword usually means the language, not an error.)

{
"mode":"search",
"searchQuery":"ไบบๅทฅๆ™บ่ƒฝ",
"maxResults":50
}

Brand search with auto-localize โ€” searches Nike and ่€ๅ…‹ (automatic), plus any aliases you add, merged and deduped and capped at maxResults:

{
"mode":"search",
"searchQuery":"Nike",
"searchAliases":["AJ","Air Jordan"],
"maxResults":100
}

4. User Posts

Get profile info (always works) + posts (requires cookies). Provide numeric user IDs or profile URLs.

{
"mode":"user_posts",
"userIds":["1642634100"],
"maxResults":50,
"cookieString":"SUB=your_sub_cookie_value"
}

5. Hot Search Delta โ€” scheduled trend monitor (no cookies needed)

Run this on a schedule (hourly or daily) and each run reports what changed on the trending board since the previous run, instead of a flat snapshot. Every topic is tagged new, rising, falling, steady, or dropped, with rank movement, hot-value change, how long it has been trending, and its running peak.

{
"mode":"hot_search_delta",
"deltaStateKey":"default"
}

State persists across runs in a named store, so the first run sets a baseline and every run after it shows the deltas. Use different deltaStateKey values to track independent streams (e.g. hourly vs daily).

โฐ Set up daily monitoring in 2 minutes

Most of this Actor's value is in recurring runs. A single pull is a one-off snapshot โ€” but a daily or hourly schedule turns it into a continuously-updated Chinese brand / public-opinion feed. That's where pay-per-result compounds: instead of paying once for a static dump, you build a living dataset that tracks how the conversation moves week over week.

  1. Run the Actor once with your input โ€” a brand keyword in search mode, or hot_search to capture the trending board โ€” and check the output looks right.
  2. Apify Console โ†’ Schedules โ†’ Create โ†’ pick this Actor and your saved input. (Even faster: open any finished run and click Schedule to reuse its exact input.)
  3. Set a cron expression and save โ€” e.g. 0 8 * * * = daily at 8am, or 0 * * * * = hourly. While you're there, enable the email notification on failed runs so you hear about a hiccup without checking manually.

Each scheduled run appends fresh results to the same dataset, so you accumulate a continuously-updated history with zero manual work โ€” perfect for sentiment trend lines, brand-mention velocity, and time-series alt-data.

๐Ÿ” Recommended recurring mode: hot_search_delta is purpose-built for scheduled trend-velocity tracking โ€” each run reports what's new / rising / falling versus the last run instead of a flat snapshot. If you're going to run on a schedule, this is the mode to point it at.

๐Ÿง  Need this at AI-training-corpus scale?

If you're pulling Weibo's short-form posts, trending-topic chatter, and comment threads to train or fine-tune language models, the Chinese AI Training Corpus Engine assembles all 5 Chinese platforms โ€” Weibo, RedNote, Bilibili, Douban, and Xueqiu โ€” into AI-ready documents in one run: deduplicated, quality-scored, PII-scrubbed, and provenance-stamped for EU AI Act documentation, from $0.025/doc, with rejects and duplicates never charged.

How to Get Cookies (for User Posts)

User posts mode returns profiles without cookies. To also get a user's actual posts, provide a login cookie:

  1. Open weibo.com in your browser and log in
  2. Open DevTools (F12) โ†’ Application โ†’ Cookies โ†’ weibo.com
  3. Copy the value of the SUB cookie
  4. Paste it in the cookieString field as: SUB=your_value_here

The cookie typically lasts several days before expiring.

Output Examples

Trending Topic

{
"rank":1,
"title":"ไบบๅทฅๆ™บ่ƒฝๆœ€ๆ–ฐ็ช็ ด",
"category":"็ง‘ๆŠ€",
"hotValue":2847562,
"labelName":"็ƒญ",
"isHot":true,
"url":"https://s.weibo.com/weibo?q=...",
"scrapedAt":"2026-04-10T12:00:00Z"
}

Hot Search Delta record

Each record shows how a topic moved since the previous run (status โˆˆ new / rising / falling / steady / dropped):

{
"rank":3,
"title":"ๆŸๅ“็‰Œๆ–ฐๅ“ๅ‘ๅธƒ",
"category":"็ง‘ๆŠ€",
"hotValue":1820000,
"status":"rising",
"rankDelta":5,
"hotValueDelta":640000,
"previousRank":8,
"firstSeenAt":"2026-06-04T08:00:00+00:00",
"minutesOnBoard":120,
"peakRank":3,
"peakHotValue":1820000,
"isHot":true,
"isNew":false,
"url":"https://s.weibo.com/weibo?q=...",
"snapshotAt":"2026-06-04T10:00:00+00:00"
}

Post

{
"postId":"5285773987283226",
"text":"ไป‹็ปไธ€ไธ‹ๆˆ‘็š„่€ๅฉ†๏ผ@้‡‘่ŽŽ",
"createdAt":"Wed Apr 09 12:49:23 +0800 2026",
"repostsCount":493,
"commentsCount":4549,
"attitudesCount":97438,
"authorName":"ๅญ™ไธžๆฝ‡",
"authorId":"7511222755",
"authorFollowers":0,
"authorVerified":false,
"images":["https://wx1.sinaimg.cn/large/..."],
"videoUrl":"",
"isRepost":false,
"postUrl":"https://weibo.com/7511222755/5285773987283226",
"scrapedAt":"2026-04-10T12:00:00Z"
}

Comment

{
"commentId":"5285813927600208",
"text":"ๆญๅ–œๆญๅ–œ๏ผ็ฅžไป™็œทไพฃ๏ผŒไธ€ๅฎš่ฆ็‹ ็‹ ๅนธ็ฆๅ“ฆ~",
"createdAt":"Thu Apr 09 12:51:31 +0800 2026",
"likeCount":1268,
"authorName":"ๅƒ็“œ็ฝ—ไผฏ็‰น",
"authorId":"6108685154",
"postId":"5285773987283226",
"postUrl":"https://weibo.com/detail/5285773987283226",
"scrapedAt":"2026-04-10T12:00:00Z"
}

Sentiment field (optional)

With sentimentAnalysis: true, every post and comment gains a sentiment object:

{
"polarity":"positive",
"score":0.42,
"method":"snownlp"
}

polarity โˆˆ positive / neutral / negative ยท score โˆˆ โˆ’1.0โ€ฆ+1.0 (higher = more positive) ยท method is snownlp for Chinese text, or keyword for the English-only fallback.

User Profile

{
"userId":"1642634100",
"screenName":"ๆ–ฐๆตช็ง‘ๆŠ€",
"description":"ๆ–ฐๆตช็ง‘ๆŠ€ๆ˜ฏไธญๅ›ฝๆœ€ๆœ‰ๅฝฑๅ“ๅŠ›็š„TMTไบงไธš่ต„่ฎฏๅŠๆ•ฐ็ ไบงๅ“ๆœๅŠกๅนณๅฐ",
"followersCount":23785876,
"friendsCount":3875,
"statusesCount":213546,
"verified":true,
"verifiedReason":"ๆ–ฐๆตช็ฝ‘ๆŠ€ๆœฏ๏ผˆไธญๅ›ฝ๏ผ‰ๆœ‰้™ๅ…ฌๅธๅฎ˜ๆ–นๅพฎๅš",
"profileUrl":"https://weibo.com/u/1642634100",
"scrapedAt":"2026-04-10T12:00:00Z"
}

Content is in Chinese

All content is returned in the original Simplified Chinese. Weibo is a Chinese-language platform โ€” posts, comments, trending topics, and user bios are in Chinese.

If you need English translations, pipe the output through a translation API (Google Translate, DeepL, or Claude).

Technical Details

  • No browser: pure HTTP โ€” fast and lightweight, runs in 256MB RAM
  • No authentication required: works against publicly accessible content only
  • Built-in rate limiting: automatic retry with exponential backoff to handle peak-hour throttling
  • Globally accessible: no VPN or proxy required
  • Clean structured JSON output: ready for analysis or downstream pipelines

Pricing

$20 per 1,000 results (pay-per-event)

Each scraped item (post, comment, trending topic, or profile) counts as one result.

Typical costs (small-scale):

  • Top 50 trending topics snapshot: ~$1.00
  • 100 posts on a brand keyword: ~$2.00
  • 200 comments on a viral post: ~$4.00
  • User profile + 50 posts: ~$1.02

B2B / bulk-scale examples:

  • AI training corpus seed (10,000 posts on a topic): ~$200
  • Daily brand sentiment monitor (500 posts/day for a month): ~$300/month
  • Equity research signal (10 tickers ร— 200 posts daily): ~$1,200/month
  • Multi-source academic dataset (50,000 posts across 30 keywords): ~$1,000

Volume pricing available above 50K items/month (see Enterprise section above).

Platform compute costs (Apify usage) are charged separately.

Limitations

  • User posts mode returns profile data without authentication. Full post history may be limited for some accounts
  • Search, hot search, and post comments work fully without authentication
  • Only public data is accessible โ€” private/locked accounts are not available
  • Weibo may rate-limit requests during peak hours โ€” handled automatically with backoff
  • Very old posts may not be available

FAQ

Is there a Weibo API?

There is no official public Weibo API available for international developers. Weibo's developer platform requires a Chinese business license and imposes strict rate limits. This Weibo Scraper is the best alternative โ€” extract trending topics, posts, comments, and profiles without any official API access.

How much does it cost to scrape Weibo?

The Weibo Scraper costs $20 per 1,000 results (pay-per-event). Each scraped item (post, comment, trending topic, or profile) counts as one result. You can start with Apify's free plan, which includes $5 of monthly credits โ€” enough for 250 data points.

Can I scrape Weibo in Python?

Yes. Install the Apify Python client (pip install apify-client), then use the ApifyClient to call the zhorex/weibo-scraper actor. See the Python code example above.

Is scraping Weibo legal?

This scraper only accesses publicly available data through Weibo's public web endpoints. It does not bypass authentication or access private/locked accounts. Always review your local laws and Weibo's terms of service before scraping.

What is the best Weibo scraper in 2026?

The Weibo Scraper by Zhorex is the only quality Weibo scraper on Apify in 2026. It supports 5 modes (hot search, hot-search delta, post comments, search, and user posts), handles rate limits automatically, and runs without a browser or VPN.

Integrations & data export

The Weibo Scraper integrates with your existing workflow tools:

  • Google Sheets โ€” Send scraped Weibo data directly to a spreadsheet
  • Zapier / Make / n8n โ€” Automate workflows triggered by new Weibo data
  • REST API โ€” Call the actor programmatically and retrieve results via Apify's REST API
  • Webhooks โ€” Get notified when a scraping run finishes and process data in real time
  • Data formats โ€” Download results in JSON, CSV, Excel, XML, or RSS

More scrapers by Zhorex

Chinese Digital Intelligence Suite

  • ๐Ÿ†• Chinese AI Training Corpus Engine โ€” Weibo + RedNote + Bilibili + Douban + Xueqiu into AI-training-ready documents (MinHash dedup, quality scoring, PII scrub, EU AI Act provenance)
  • ๐Ÿ†• Chinese Brand Monitor โ€” Cross-platform brand mention aggregator (Weibo + RedNote + Bilibili + Douban + Xueqiu, sentiment + dedup)
  • Bilibili Scraper โ€” China's video platform: danmaku, comments, Gen-Z creator analytics
  • RedNote (Xiaohongshu) Scraper โ€” China's Instagram + Pinterest (lifestyle, consumer reviews)
  • RedNote Shop Scraper โ€” RedShop e-commerce (products, vendors, prices)
  • Douban Scraper โ€” Long-form reviews, ratings, group discussions (movies/books/music)
  • Xueqiu Scraper โ€” Chinese stock-discussion sentiment, cashtag indexing (SH/SZ/HK/US-listed Chinese)

Streaming & Video

Markets & Alt-Data

B2B Reviews

Other Tools

Support

Having issues? Open an issue on the Actor page โ€” typically fixed within 48 hours.


Your Review Matters โญ

Maintaining a working Weibo scraper is real, ongoing effort โ€” most Weibo scrapers on Apify are broken or abandoned. If this one delivered the data you needed, a 30-second review makes a real difference:

  1. Go to the Weibo Scraper page
  2. Click the star rating near the top
  3. Optionally leave a one-line note about your use case (e.g. "pulled 5,000 posts for brand sentiment in minutes")

Why it matters: reviews are the #1 signal Apify users check before trying a scraper โ€” a higher rating means more teams find this Actor instead of abandoned alternatives, which funds faster updates and new features for everyone.

Found a bug or missing field? Open an issue โ€” typically fixed within 48 hours.


Last updated: June 2026 ยท Actively maintained ยท Trusted by AI training data teams, equity research desks, brand monitoring agencies, and academic NLP researchers.

You might also like

Weibo Scraper

piotrv1001/weibo-scraper

The Weibo Scraper efficiently extracts posts from Weibo's main feed, capturing likes, comments, shares, text content, images, videos, and profile data. It allows setting a maximum number of posts to fetch, making it ideal for social media analysis, trend monitoring, and engagement tracking

218

5.0

Weibo(ๅพฎๅš) Media Downloader ๐ŸŽฅ ๐Ÿ“ธ

easyapi/weibo-wei-bo-media-downloader

Extract and download high-quality videos and images from Weibo (ๅพฎๅš) posts. Supports multiple quality options up to 2K resolution, batch processing, and provides structured output with direct download links. Perfect for content archiving and social media research.

Douyin Search Scraper

kuaima/douyin-search

This scraper can help you to get search data from https://www.douyin.com/ ๆŠ–้Ÿณ which is Chinese Version of tiktok.

Bilibili Scraper - Chinese Video Intelligence

zhorex/bilibili-scraper

Extract Chinese Gen-Z video sentiment, danmaku reactions, and creator analytics from Bilibili (ๅ“”ๅ“ฉๅ“”ๅ“ฉ) โ€” China's largest video platform with 300M+ users. Built for AI training, Chinese consumer equity research, and brand monitoring. Danmaku/coins/favorites included. No login required.

Douyin Scraper โ€” TikTok China API & Video Downloader

sian.agency/douyin-scraper

Douyin scraper for TikTok China โ€” extract video data, user profiles, comments, reply threads, and keyword search. KOL discovery, view counts, engagement metrics, China market research. Seven operations, one clean dataset per run. No API key.

๐Ÿ‘ User avatar

SIรN Oรœ

57

Douyin Scraper

natanielsantos/douyin-scraper

This powerful tool enables you to extract data from Douyin, the Chinese version of TikTok. Use it to scrape post data, like URLs, numbers of followers, hearts, video, music-related data and more. Download Douyin data as a HTML, JSON, CSV, Excel, or XML doc.

๐Ÿ‘ User avatar

Nataniel Santos

1.5K

3.1

Douyin Analytics Scraper

automation-lab/douyin-analytics-scraper

Extract Douyin trending hot search topics, video search results, and user profile analytics. Get real-time rankings, engagement metrics, and follower counts. No login or API key required.

๐Ÿ‘ User avatar

Stas Persiianenko

112

Douyin ๆŠ–้Ÿณ Profile Scraper - ๅšไธป Followers, Posts & Hashtags

zen-studio/douyin-profile-scraper

Extract Douyin (ๆŠ–้Ÿณ) ๅšไธป profiles, ็ฒ‰ไธ counts, engagement stats, hashtags, and Douyin's server-classified video categories. 28 fields per post + 22 per author. Accepts profile URLs, share links, UserSecIDs, and numeric user IDs. Profile-only ๆ•ฐๆฎ้‡‡้›† mode for cheap follower tracking.

Douyin Video Downloader ๐ŸŽฅ

easyapi/douyin-video-downloader

Extract and download videos from Douyin (Chinese TikTok) without watermark. Get high-quality video URLs, thumbnails, author info and other metadata in structured format. Perfect for content analysis and archiving.