# Weibo Post Info ## Overview | Property | Value | |----------|-------| | **Status** | degraded | | **Method** | `GET` | | **Endpoint** | `/v2/weibo/post/info` | | **Base URL** | `https://api.piloterr.com` | | **Credit Cost** | 1 credit per call | | **Documentation** | https://www.piloterr.com/library/weibo-post-info | ## Description Retrieve detailed information from any Weibo post, including post text, images, user profile data, and engagement metrics. ## Authentication - **Key Name:** `x-api-key` - **Location:** HTTP Header - **Get an API key:** https://app.piloterr.com/register ## Example Request ```bash curl --location --request GET 'https://api.piloterr.com/v2/weibo/post/info' \ --header 'Content-Type: application/json' \ --header 'x-api-key: YOUR_API_KEY' ``` ## Example Response ### Get Weibo post details ```json { "post": { "id": "5062595839264600", "pics": [ { "pid": "001R0E0aly1hs8gb8rfhoj647k2yg4qt02", "url": "https://wx4.sinaimg.cn/orj360/001R0E0aly1hs8gb8rfhoj647k2yg4qt02.jpg", "large": { "url": "https://wx4.sinaimg.cn/large/001R0E0aly1hs8gb8rfhoj647k2yg4qt02.jpg" } } ], "text": "#刘宇坤50米步枪三姿金牌# #中国队第十金# #一人一句给中国健儿加油#", "user": { "id": 1699432410, "svip": 1, "verified": true, "enterprise": 1, "screen_name": "CCTV体育", "followers_count": "28.8万" } } } ``` ## Documentation ## Overview The Weibo Post Info endpoint retrieves complete information from any Weibo post including text, images, and user profile data. ## Quickstart ``` GET https://api.piloterr.com/v2/weibo/post/info?query=https://m.weibo.cn/detail/5062595839264600 ``` ## Parameters | Parameter | Type | Required | Description | |---|---|---|---| | `query` | string | yes | Weibo post URL or post ID | ## Response fields | Field | Type | Description | |---|---|---| | `post.text` | string | Post content | | `post.pics` | array | Attached images | | `post.user.screen_name` | string | Author name | | `post.user.followers_count` | string | Follower count | ## Main use cases - Monitor Weibo posts for brand mentions in China - Extract viral Chinese social media content for competitive intelligence - Track influencer post data and verification status - Build Chinese social media monitoring tools