
TikTok Video Search
FreeEfficiently scrape TikTok videos by keyword.
Free · Opens the source repo
What TikTok Video Search does
The TikTok Video Search skill allows users to extract video search results from TikTok based on specified keywords. By utilizing the TikTok API endpoint /api/search/item/full/, this skill navigates to the TikTok search results page and captures relevant metadata for each video. This includes information about the video’s author, engagement statistics, music used, and various other attributes, all presented in a structured format.
To use the skill, users must have an active TikTok session in their browser, as the API requires authentication. The skill operates by triggering a network request after navigating to the search results page for a given keyword. Once the results are retrieved, users can paginate through the data, capturing additional videos as they scroll down the page. The skill is designed for those interested in market research, competitor analysis, or simply discovering TikTok content related to specific topics or keywords.
This skill is particularly useful for marketers, content creators, and researchers who need to analyze trends and engagement on TikTok. By automating the video scraping process, users can save time and gather comprehensive data that aids in understanding audience preferences and content performance on the platform. The output is a paginated list of videos, complete with metadata that can inform strategic decisions regarding content creation and marketing efforts.
However, users should be aware of certain limitations, such as the requirement for a logged-in TikTok account to access the search functionality and the potential for personalized search results based on the user’s account. Additionally, the skill captures around 12 videos per page, which is fewer than other TikTok endpoints for hashtags. This means users may need to execute multiple searches to gather a broader dataset.
When to use it
Use this skill when you need to gather TikTok video data for specific keywords, whether for research, content creation, or competitive analysis.
When not to use it
This skill is not suitable for users who do not have a TikTok account or those who require access to a broader range of data than what is provided by the search API.
What you can build with it
Market Research on TikTok Trends
Analyze trending topics by scraping videos related to specific keywords, helping you understand audience interests.
Competitor Content Monitoring
Keep track of competitor videos by searching for keywords related to their content, allowing for strategic insights.
Content Creation Inspiration
Discover popular videos around a keyword to inspire your own content creation efforts.
How to install TikTok Video Search
View source1. Install with the skills CLI
npx skills add browser-act/skills/tiktok-search-videos --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by browser-actTikTok — Search Videos
search keyword → paginated video list with author, engagement, music, and video metadata
Language
All process output to user (progress updates, process notifications) follows the user's language.
Objective
Extract TikTok video search results for a given keyword using the /api/search/item/full/ endpoint triggered by navigating to the search results page.
Prerequisites
- Browser is open and can access
https://www.tiktok.com - Login required: TikTok blocks video search API for non-logged-in users; ensure the browser has an active TikTok session
Pre-execution Checks
1. Tool Readiness
If browser-act has been confirmed available in the current session → skip this step.
Invoke browser-act via Skill tool to load usage. If installation or configuration issues arise, follow its guidance to resolve then retry.
Capability Components
This Skill's operational boundary = what the user can manually do in their browser. It only reads data already displayed to the user on the page, never bypassing authentication or access controls. JS code is encapsulated in Python files under the
scripts/directory, invoked viaeval "$(python scripts/xxx.py {params})".$(...)is bash syntax; it is recommended to use the bash tool for execution.
Network Capture: Search video results (parameters injected via URL navigation)
/api/search/item/full/ requires TikTok's dynamic signing; navigate to the search page to trigger it automatically:
navigate https://www.tiktok.com/search/video?q={keyword}wait stablenetwork requests --type xhr,fetch --filter "search/item/full"network request <id>
Endpoint characteristic: URL contains /api/search/item/full/ with keyword={keyword}&cursor=0
Error handling: If no matching request appears after navigation, take a screenshot to verify the page loaded correctly (check for anti-bot challenge), then retry once.
Output example:
{
"status_code": 0,
"cursor": "12", // use to identify next-page requests
"has_more": 1, // 0 when all results exhausted
"item_list": [
{
"id": "7212410220977392938",
"desc": "Daily Push Up Workout🚀#fitness #athlete",
"createTime": 1679270124,
"isAd": false,
"locationCreated": "US",
"author": {
"uniqueId": "marcusriosofficial",
"nickname": "Marcus Rios",
"verified": false,
"signature": "Former NFL Athlete 🏈",
"avatarThumb": "https://...",
"privateAccount": false
},
"authorStats": {
"followerCount": 423500,
"followingCount": 50,
"heart": 10000000,
"videoCount": 1277,
"diggCount": 869
},
"stats": {
"diggCount": 367500,
"shareCount": 6041,
"playCount": 4500000,
"commentCount": 942,
"collectCount": 56691
},
"video": {
"duration": 48,
"height": 1280,
"width": 720,
"cover": "https://...",
"definition": "720p",
"format": "mp4"
},
"music": {
"id": "7176546707423889410",
"title": "Trap Money so Big (Remix)",
"authorName": "Iqbal12",
"original": false,
"coverMedium": "https://..."
},
"textExtra": [{"hashtagId": "9261", "hashtagName": "fitness"}],
"effectStickers": []
}
]
}
To build the webVideoUrl for each item: https://www.tiktok.com/@{item.author.uniqueId}/video/{item.id}
Network Capture: Search results pagination (page 2+)
After reading page 1, scroll down to load the next page:
scroll downwait stablenetwork requests --type xhr,fetch --filter "search/item/full"- Find the request where the URL
cursorvalue is higher than the previous page (e.g.,cursor=12,cursor=24) network request <id>
Termination: has_more is 0 in response, or item_list is empty.
Pagination
DOM Pagination: Scroll triggers new search/item/full requests. Each page returns 12 items. Cursor increments by 12 per page. Termination: has_more === 0 or empty item_list.
Success Criteria
item_list.length >= 1 and first item has non-null id, stats.playCount, author.uniqueId
Known Limitations
search/item/fullrequires dynamic signing — always use navigate + network capture- Login required: TikTok blocks the video search API for non-logged-in users —
search/item/fullwill not be triggered without an active TikTok session; exploration was done on a logged-in browser and this dependency was not caught at the time - Search returns ~12 videos per page (fewer than hashtag's 30 per page)
- Logged-in users may see personalized results; use a fresh browser session for unbiased results
searchQueryfield is not returned in the raw API response body
Execution Efficiency
- Batch orchestration: Loop multiple keywords serially in one session; add 2–3s between navigations.
- Test before batch execution: Test with 1 keyword first before running the full list.
- Error resumption: Save results keyword-by-keyword; resume from the failed keyword on error.
Experience Notes
Path: {working-directory}/browser-act-skill-forge-memories/tiktok-scraper-tiktok-search-videos.memory.md
Before execution: If the file exists, read it first — it records unexpected situations from past executions; adjust strategy accordingly.
After execution: If an unexpected situation occurs (strategy failed, page redesigned, anti-scraping upgraded), append a line:
{YYYY-MM-DD}: {what happened} → {conclusion}
Normal execution does not write to the file.
Frequently asked questions about TikTok Video Search
Similar skills
Mimic Dataset
Augment HDF5 recordings by replicating trajectories with noise.
Parallel Data Load
Efficiently load sharded datasets into cuPyNumeric arrays.
LaminDB
Manage and track biological datasets with ease.
TikTok Hashtag Videos
Scrape TikTok videos by hashtag with full metadata.
Douyin Video Search
Efficiently search and retrieve Douyin video data by keyword.
X Tweet Search by Query
Efficiently collect and analyze tweets using advanced queries.
