Weibo Scraper | All-In-One avatar

Weibo Scraper | All-In-One

Pricing

from $2.40 / 1,000 results

Go to Apify Store
Weibo Scraper | All-In-One

Weibo Scraper | All-In-One

Extract Weibo posts, profiles, comments, videos, and the hot-search board in one Actor. Add a username, post URL, or keyword and get post text, repost, comment and like counts, follower counts, bios, and trending topics from Sina Weibo.

Pricing

from $2.40 / 1,000 results

Rating

0.0

(0)

Developer

ToolzerHub

ToolzerHub

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

12 hours ago

Last modified

Share

Weibo Scraper

Pull Weibo posts, profiles, comments, videos, and the hot-search board from one Actor. Give it a username, a post URL, or a keyword, and it returns structured rows — post text, repost/comment/like counts, follower counts, bios, and trending topics from Sina Weibo. The hot-search board is the one dataset here with no equivalent anywhere else in this domain: a live read of Weibo's current ranked board, roughly fifty entries, refreshed on every run.

Modes

Set scraperType to pick what this run collects. Each mode takes its own identifier below the picker.

ModeReturnsNeedsOr use the focused Actor
User infoOne profile's public dataprofileWeibo Profile Scraper
User postsEvery public post on a profile's timelineprofileWeibo Profile Posts Scraper
User fansA profile's followersprofileWeibo Followers Scraper
User followingThe accounts a profile followsprofileWeibo Followers Scraper
Post detailOne post's full recordpostWeibo Post Scraper
Post commentsA post's commentspostWeibo Comments Scraper
Post sub-commentsReplies to one specific commentcommentWeibo Comments Scraper
Post likesA post's public liker listpostWeibo Post Engagement Scraper
Post repostsA post's public repost listpostWeibo Post Engagement Scraper
Search postsPosts matching a keywordqueryWeibo Search Scraper
Search usersAccounts matching a keywordqueryWeibo User Search Scraper
Search topicsTopics matching a keywordqueryWeibo Topic Search Scraper
Search videosVideos matching a keywordqueryWeibo Video Search Scraper
Hot searchThe current hot-search rankingnoneWeibo Hot Search Scraper
User videosVideos posted by a profileprofileWeibo Video Scraper
Video detailOne video's full recordpostWeibo Video Scraper

scraperType is the only field this Actor marks required, and every other identifier is checked and reported plainly the moment its mode runs. Leave profile blank on User Info, User Posts, User Fans, User Following, or User Videos and the run stops with Provide a Weibo profile ID or URL. Leave post blank on Post Detail, Post Comments, Post Likes, Post Reposts, or Video Detail and it stops with Provide a Weibo post ID or URL. Post Sub-Comments needs comment specifically — a comment ID, not the post it's on — and stops with Provide a Weibo comment ID to fetch replies for if that's missing. Every search mode needs query, and stops with Provide a search query. Hot Search is the one mode that needs nothing at all.

One Actor or twelve?

The sixteen modes above are also sold as twelve focused Actors (a few pair two closely related modes, like User Fans and User Following, behind one Actor). Reach for a focused Actor once you know exactly which dataset you need at scale — one profile's follower list, one post's comments. Reach for this Actor when a research project spans several of those — a post plus its likers plus its reposts plus the hot-search board it's trending on, say — because that's one Actor integration instead of switching between several.

Input

{
"scraperType": "hotSearch"
}

profile and post each accept either a bare numeric ID or a Weibo URL (weibo.com/u/<id>, m.weibo.cn/detail|status/<id>) — one field works the same way across every mode that needs it, even though the modes send it upstream under different names (status_id for likes and reposts, mid for video detail). maxItems (default 100, 0 for no limit) caps every paginated mode. User Fans, User Following, User Search, and Topic Search each return a single page per run and have no maxItems field at all — see below.

Output

Field names vary by mode. Across the sixteen, the ones you'll see most are:

FieldContents
id, idstr, mid, mblogidPost identifiers
text, text_raw, created_atPost content and timestamp
reposts_count, comments_count, attitudes_countPost engagement
screen_name, followers_count, verifiedProfile data
content, floor_number, like_countsComment data
category, type, dataLiker/repost rows (Post Likes, Post Reposts)
rank, keyword, heat, tagHot-search rows
{
"id": 5023918475601234,
"idstr": "5023918475601234",
"mid": "5023918475601234",
"text_raw": "Example post text",
"created_at": "2026-08-01T10:00:00Z",
"attitudes_count": 342,
"comments_count": 51,
"reposts_count": 12
}

Questions

What happens if I forget the identifier for my mode? Every mode that needs one checks for it before making a request and stops with a plain message naming what's missing — there's no mode here that silently runs and returns nothing. The only mode that needs no identifier at all is Hot Search.

User Fans returned an error on one account and worked fine on another. Why? Large official or organizational accounts can refuse this lookup outright rather than returning an empty list — a national news outlet's account failed on repeated attempts during testing, while an ordinary individual account succeeded on the first try. This looks like a genuine account-type restriction on Weibo's side, not a rate limit, and the same applies to User Following.

Post Likes returned a row that isn't a real liker. What is it? The first row Weibo returns for a post's liker list is a summary card — counts broken down by reaction type — not an individual liker. Every row after it is a real liker. Filter on the type field if you need liker rows only.

Post Sub-Comments needs a comment ID, not the post ID. Where do I get one? From a Post Comments run first — every comment row carries its own id. Pass that into comment on Post Sub-Comments to pull replies to that specific comment; the post's own ID won't work here.

Why doesn't maxItems do anything on Search Users or Search Topics? Those two modes return one page and stop — there's no maxItems field on either, and they don't check Weibo for a next page even when one might exist. Search Posts and Search Videos both paginate fully and expose maxItems.

How current is the hot-search board? Each run is a live, unparameterized read of Weibo's own hot-search summary at request time — there's no cached or stored snapshot behind it. The board runs to roughly fifty ranked entries; pinned entries in particular sometimes carry no numeric heat value at all, which is Weibo's own board data, not a missing field on this end.

Is a Weibo login or session cookie ever required? No. Every mode goes through this Actor's own backend with a project API key; no Weibo cookie or session token is sent for any of the sixteen modes.

ActorPurpose
Weibo Profile ScraperOne profile's public data
Weibo Post ScraperOne post's full record
Weibo Comments ScraperA post's comments and replies
Weibo Hot Search ScraperThe hot-search board on its own
Weibo Search ScraperKeyword search across posts