Explore our Marketplace to buy and sell APIs, services, and social media solutions. Connect with a vibrant community of developers, businesses, and creators!
第一次请求/First request: max_id="0" count=10
后续请求/Subsequent requests: max_id="{上次返回的最大ID/Max ID from previous response}" count=10
{
"code": 200,
"data": {
"statuses": [
{
"推荐微博内容/Recommended content": "包含微博文本、图片、视频等/Contains post text, images, videos, etc.",
"作者信息/Author info": "发布者的用户信息/Publisher's user information",
"互动数据/Interaction data": "点赞、评论、转发数/Likes, comments, repost counts",
"推荐理由/Recommendation reason": "推荐算法的理由说明/Algorithm reasoning explanation",
"发布时间/Post time": "微博发布的时间戳/Post timestamp"
}
],
"since_id": "<不依赖于时间的分页标识/Time-independent pagination ID>",
"max_id": "下一页的最大ID/Max ID for next page",
"total_number": "总数量统计/Total count statistics"
}
}
fetch_all_groups
获取可用分组,再选择合适的分组ID/First call fetch_all_groups
to get available groups, then select appropriate group IDmax_id
和 count
进行下一页加载/Use returned max_id
and count
for next page loadingcount
设置在5-20之间,避免单次数据量过大/Recommend setting count
between 5-20 to avoid excessive data per requestrefresh=0
获取常规推荐内容/Use refresh=0
for regular recommended content under normal circumstancesrefresh=1
强制刷新/Use refresh=1
for force refresh when latest content is neededAuthorization: Bearer ********************
curl --location --request GET 'https://api.tikhub.io/api/v1/weibo/web_v2/fetch_user_recommend_timeline?refresh=0&group_id=102803&containerid=102803&extparam=discover|new_feed&max_id=0&count=10' \
--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
}