Weibo Post Detail Scraper
Under maintenancePricing
$0.10 / actor start
Weibo Post Detail Scraper
Under maintenanceFetch one Weibo post's full detail plus up to 10 pages of comments (~150 total) with cursor-based pagination. Pass numeric postId (+ optional mid) from upstream feeds.
Pricing
$0.10 / actor start
Rating
0.0
(0)
Developer
wang wei
Maintained by CommunityActor stats
0
Bookmarked
1
Total users
0
Monthly active users
4 days ago
Last modified
Categories
Share
Pull a single Weibo post + its first ~150 comments by postId. Built for marketing monitoring, brand mention triage, and dataset enrichment.
One run = 1 detail request + N comments page requests. Pass a postId (and optionally mid, maxPages). Pagination follows the upstream's max_id + max_id_type dual-field protocol (verified 2026-08-20) — no cookies, no auth tokens.
- Actor ID:
vgIzEKOSpFKlEDVo5 - Build:
0.1.3 - Source: A hosted Chinese social data API provider (Weibo endpoints)
What it does
| Input | Output |
|---|---|
postId="5328347665010605" + mid="5328347665010605" + maxPages=1 (defaults) | 1 post-detail record (kind: 'post_detail') + ~15 first-page comment records (kind: 'comment'). Pass maxPages=10 to walk the full upstream thread (~150 comments). |
Quick start
{"postId": "5328347665010605","mid": "5328347665010605","maxPages": 1}
Output dataset mixes post detail and comments, each tagged with kind:
[{"kind": "post_detail","post_id": "5328347665010605","mid": "5328347665010605","created_at": "Wed Aug 05 00:22:22 +0800 2026","text": "现在拍戏都这么拼吗 [允悲] 女演员工伤 偷胯婆的微博视频","text_length": 57,"source": "iPhone 17 Pro Max","reposts_count": 142,"comments_count": 523,"attitudes_count": 1820,"user": { "user_id": 7491687377, "screen_name": "偷胯婆", "verified": true, "followers_count": "2.3万" },"rawData": { /* full upstream post object */ }},{"kind": "comment","post_id": "5328347665010605","comment_id": "5010203873098001","floor_number": 1,"created_at": "Wed Aug 05 00:30:11 +0800 2026","text": "心疼姐姐 [泪]","user": { "user_id": 1234567890, "screen_name": "路人甲" },"rawData": { /* full upstream comment object */ }}]
Input fields
| Field | Required | Default | Notes |
|---|---|---|---|
postId | yes | — | Numeric Weibo post id (string of digits, ≥6 chars). |
mid | no | falls back to postId | Numeric Weibo mid; required by upstream for fetch_post_comments. |
maxPages | no | 1 | 1..10. Each page returns ~15 comments; maxPages=10 ≈ 150 comments total. Pagination stops early when upstream has no more data. |
Pricing
Free users are limited to 5 runs per day. Paid users (APIFY_USER_IS_PAYING=1) have unlimited runs. The Actor itself adds no markup — you pay the upstream provider per request plus the standard Apify compute unit cost.
Output
The Actor pushes one kind: 'post_detail' item + N kind: 'comment' items to the default dataset and writes a SUMMARY record to the default key-value store with run details (postId, mid, pagesFetched, requests, uniqueComments, totalCommentsFromUpstream, nextMaxId, nextMaxIdType, free-run counter, etc.).
Use it together with the other Weibo Actors
This Actor is the step ③ leaf node of the 3-Actor Weibo MVP-2 set. Use it together with:
| Where in the pipeline | Actor | Console | Use it to |
|---|---|---|---|
| before / step ① | Weibo Hot Search Scraper | Console | step ① — fetch the realtime hot list, get post_id of each trend |
| before / step ② | Weibo Keyword Search Scraper | Console | step ② — search posts by keyword, get post_id of each result |
| after / step ③ | Weibo Post Detail Scraper (you are here) | (step ③ — leaf node) | step ③ — pass in one post_id from above, pull full post text + up to ~150 comments |
You are here: Weibo Post Detail Scraper — run this on its own for the upstream use case described above.
Why this Actor exists
Apify has ~50,000 Actors and almost zero Weibo scrapers. This Actor is part of a planned Weibo MVP-2 set (5 Actors covering hot search, keyword search, user profile, post detail + comments, and channel feed) that targets the gap.
Source & credits
Data source: a hosted Chinese social data API provider (Weibo endpoints). The provider charges per upstream request; this Actor adds no markup.
License
MIT