Weibo profile
Profile header + publication metrics for a Weibo (微博) user.
Provide exactly one of user_id (the numeric uid in weibo.com/u/<uid>) or
url (any weibo.com profile URL, /u/<uid>, /<uid>, /n/<nickname>, or a
vanity /<custom-domain>). Returns profile_info only (no post feed): identity,
follower/following/post counts, verification, and the account's lifetime
aggregate engagement (total comments/reposts/likes).
Weibo's search surface withholds engagement counts. Those fields come back null on search results and are flagged, rather than being filled with zeros. Read a post through the details endpoint to get its counts.
The example response below is real output from this endpoint, not an illustration. Long lists and long strings are shortened to keep the page readable, and each place that happens is marked. This example took 4.9s.
Authorization
ApiKeyAuth Your API key. Sent on every request.
In: header
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
application/json
application/json
curl -X POST "https://example.com/v1/scrapers/weibo-profile" \ -H "Content-Type: application/json" \ -d '{ "user_id": "5574668770" }'{ "request_id": "req_8f2c1d94e7b0", "success": true, "status": { "code": "OK", "message": "Scrape completed.", "retryable": false }, "data": { "data": { "profile_info": { "avatar": "https://tvax4.sinaimg.cn/crop.0.0.1080.1080.1024/0065gK0qly8h5zbl70urnj30u00u0glr.jpg?KID=imgbed,tva&Expires=1787497359&ssig=p7pJWDNGdt", "cover_image": "https://wx1.sinaimg.cn/crop.0.0.640.640.640/0065gK0qgy1hr2vyw6331j30u00u00wo.jpg", "custom_domain": null, "description": "Babycare是设计师创立的母婴品牌,以「秉父母之心做产品」为使命,产品服务30多个国家,连续三年中国母婴用品销售额第一,是全球9000万家庭的安心之选", "followers_count": 446296, "followers_count_display": "44.6万", "following_count": 607, "gender": "male", "is_svip": false, "location": "其他", "membership_level": 7, "membership_type": 12, "post_count": 6747, "profile_url": "https://weibo.com/u/5574668770", "screen_name": "Babycare", "total_comment_count": 493782, "total_engagement_count": 2405134, "total_engagement_display": "240.5万", "total_like_count": 1033478, "total_repost_count": 877874, "user_id": "5574668770", "verified": true, "verified_reason": "Babycare品牌官方微博", "verified_type": 2 } } }, "error": null, "meta": { "client_id": "client_abc123", "scraper": "weibo-profile", "billable": true, "duration_ms": 4378 }}