搜索视频(按标题)/Search videos (by title)
[中文]#
用途:#
参数:#
cursor: 翻页游标,首 页传 0,后续传上一页响应里的 cursor
返回:#
[English]#
Purpose:#
Search DOU+ videos by title/keyword, with cursor pagination
Parameters:#
keyword: Video title or keyword (required)
cursor: Pagination cursor, 0 for first page, then pass the cursor from the previous response
count: Page size, default 12
Return:#
Matched video list plus pagination info
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
or
Body Params application/jsonRequired
{
"keyword": "major",
"cursor": 0,
"count": 12
}
Request Code Samples
curl --location 'https://api.tikomni.com/api/u1/v1/douyin/douplus/search_video' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"keyword": "major",
"cursor": 0,
"count": 12
}'
Modified at 2026-07-09 22:15:17