获取首页推荐数据/Get home feed data
[中文]#
用途:#
参数:#
refresh_index: 刷新/翻页索引,从 0 开始,每翻一页 +1。refresh_index=0:刷新(首次进入/下拉刷新)
refresh_index>0:翻页(下滑加载更多)
cookie: 可选,用户网页版抖音登录Cookie。传入后返回该账号的个性化推荐;不传则使用默认Cookie返回通用推荐。
返回:#
[English]#
Purpose:#
Parameters:#
count: Number, default is 10, it is recommended to keep it unchanged.
refresh_index: Refresh/paging index, start at 0 and +1 per page.refresh_index=0: refresh (first entry / pull-to-refresh)
refresh_index>0: load-more (scroll down)
cookie: Optional, your web version of Douyin login Cookie. Returns a personalized feed for that account; uses the default Cookie if omitted.
Return:#
[示例/Example]#
count = 10
refresh_index = 0
cookie = ""Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
or
Body Params application/json
{
"count": 10,
"refresh_index": 0,
"cookie": ""
}
Request Code Samples
curl --location 'https://api.tikomni.com/api/u1/v1/douyin/web/fetch_home_feed' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"count": 10,
"refresh_index": 0,
"cookie": ""
}'
Modified at 2026-06-11 22:47:42