Explore our Marketplace to buy and sell APIs, services, and social media solutions. Connect with a vibrant community of developers, businesses, and creators!
fetch_user_posts: 获取用户所有微博(包括转发)/Get all user posts (including reposts)
fetch_user_original_posts: 仅获取用户原创微博(排除转发)/Get only user original posts (excluding reposts)
fetch_user_posts
接口获取/Must first call fetch_user_posts
interface to obtain
fetch_user_posts
接口获取,不能自行构造/Must be obtained from fetch_user_posts
interface, cannot be constructed manually{
"code": 200,
"data": {
"list": [
{
"微博ID": "string",
"微博内容": "string",
"发布时间": "string",
"互动数据": {
"转发数": "number",
"评论数": "number",
"点赞数": "number"
},
"媒体文件": [],
"话题标签": []
}
],
"since_id": "下一页标识",
"总数统计": "..."
}
}
Authorization: Bearer ********************
curl --location --request GET 'https://api.tikhub.io/api/v1/weibo/web_v2/fetch_user_original_posts?uid=7277477906&page=1&since_id=' \
--header 'Authorization: Bearer <token>'
{
"code": 200,
"request_id": "string",
"message": "Request successful. This request will incur a charge.",
"message_zh": "请求成功,本次请求将被计费。",
"support": "Discord: https://discord.gg/aMEAS8Xsvz",
"time": "2025-09-16 03:14:36",
"time_stamp": 1758017676,
"time_zone": "America/Los_Angeles",
"docs": "string",
"router": "",
"params": {},
"data": null
}