
TikTok Hashtag Videos
FreeScrape TikTok videos by hashtag with full metadata.
Free · Opens the source repo
What TikTok Hashtag Videos does
The TikTok Hashtag Videos skill enables users to extract comprehensive video lists from TikTok based on specific hashtags. By utilizing the TikTok API's challenge endpoint, this skill allows you to gather data such as author profiles, engagement statistics, music details, and other relevant metadata associated with videos under a chosen hashtag. This functionality is particularly useful for competitive research, influencer discovery, and monitoring trends within the TikTok platform.
To use the skill, simply input the desired hashtag, and the skill will handle the process of retrieving the challenge ID and navigating TikTok's interface to collect video data. The output includes a paginated list of videos, complete with details like video duration, view counts, and author statistics. This makes it an invaluable tool for marketers, content creators, and researchers who need to analyze TikTok content and trends based on specific topics.
The skill operates within the constraints of TikTok's public data access, meaning it requires a browser that can access TikTok without restrictions, specifically avoiding Hong Kong proxies due to regional limitations. Users will find that the skill effectively automates the tedious process of scrolling and capturing video data, allowing for efficient data collection and analysis.
In summary, the TikTok Hashtag Videos skill is designed for anyone looking to perform in-depth analysis of TikTok content through hashtag tracking. Whether for marketing insights, content strategy, or trend analysis, this skill streamlines the process of gathering valuable video data from TikTok hashtags.
When to use it
Use this skill when you need to collect video data from TikTok based on specific hashtags for analysis or research.
When not to use it
This skill is not suitable for accessing private or age-restricted hashtags, nor for users in regions where TikTok is blocked without a proxy.
What you can build with it
Market Research
Collect data on trending TikTok hashtags to inform marketing strategies and content creation.
Influencer Discovery
Identify potential influencers by analyzing video engagement metrics associated with specific hashtags.
Content Monitoring
Track the performance and engagement of videos under specific hashtags for ongoing content strategy.
How to install TikTok Hashtag Videos
View source1. Install with the skills CLI
npx skills add browser-act/skills/tiktok-hashtag-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 — Hashtag Videos
hashtag name → challenge info + 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 the video list for a given TikTok hashtag using the /api/challenge/item_list/ endpoint triggered by page navigation.
Prerequisites
- Browser is open and can access
https://www.tiktok.com - No login required for public hashtag data
- Browser must use a non-HK proxy (TikTok has shut down in Hong Kong)
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.
Below are all atomic capabilities discovered and verified during the exploration phase. Simply invoke them as needed — no need to read scripts/*.py source code or re-verify.
API: Get challenge ID from hashtag name
eval "$(python scripts/get-challenge-id.py '{hashtag}')"
Parameters:
{hashtag}: hashtag name without#, e.g.,fitness
Output example:
{
"id": "9261", // challengeID — required for item_list requests
"title": "fitness", // canonical hashtag title
"videoCount": "63107035", // total videos under this hashtag
"viewCount": "760591731095" // total views
}
Network Capture: Hashtag video list (parameters injected via URL navigation)
/api/challenge/item_list/ requires TikTok's dynamic signing (X-Bogus/X-Gnarly); direct fetch returns empty. Navigate to the hashtag page — TikTok's JS triggers the signed request automatically:
navigate https://www.tiktok.com/tag/{hashtag}wait stablenetwork requests --type xhr,fetch --filter "challenge/item_list"network request <id>
Endpoint characteristic: URL contains /api/challenge/item_list/ with cursor=0
Error handling: If no matching request is found after navigation, take a screenshot to confirm the page loaded correctly, then retry navigation once. If the page shows a region-restriction notice, switch to a browser with a non-HK proxy.
Output example:
{
"cursor": "30", // use as cursor value to identify next page's request
"hasMore": true, // false when all pages exhausted
"itemList": [
{
"id": "7212410220977392938",
"desc": "Daily Push Up Workout🚀#fitness #athlete",
"createTime": 1679270124,
"isAd": false,
"isPinned": false,
"locationCreated": "US",
"author": {
"uniqueId": "marcusriosofficial", // username for webVideoUrl
"nickname": "Marcus Rios",
"verified": false,
"signature": "Former NFL Athlete 🏈",
"bioLink": null,
"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": [],
"imagePost": null // non-null for slideshow posts
}
]
}
Network Capture: Hashtag video list pagination (page 2+)
After reading page 1, scroll down to trigger the next page request:
scroll downwait stablenetwork requests --type xhr,fetch --filter "challenge/item_list"- Find the request whose URL contains a
cursorvalue higher than the previous page (e.g.,cursor=30,cursor=60) network request <id>
Termination: hasMore is false in response, or itemList is empty.
Composite: Full hashtag extraction (challenge ID + paginated video list)
eval "$(python scripts/get-challenge-id.py '{hashtag}')"→ recordidas challengeId (confirms hashtag exists)navigate https://www.tiktok.com/tag/{hashtag}→wait stablenetwork requests --filter "challenge/item_list"→network request <id>→ collectitemList, notecursorandhasMore- While
hasMoreistrue: a.scroll down→wait stableb.network requests --filter "challenge/item_list"→ find new request (cursor changed) →network request <id>c. CollectitemList, updatehasMore - Merge all collected
itemListarrays
Pagination
DOM Pagination: Scroll triggers new challenge/item_list requests. Each page returns 30 items. Cursor advances numerically (0 → 30 → 60...). Termination: hasMore === false or empty itemList.
Success Criteria
itemList.length >= 1 and first item has non-null id, stats.playCount, author.uniqueId
Known Limitations
- Requires non-HK proxy (TikTok shut down in Hong Kong)
challenge/item_listrequires dynamic signing — always use navigate + network captureget-challenge-id.py(challenge/detail) works via direct fetch without signing- Private or age-restricted hashtags may return empty
itemList - Page returns ~30 videos per scroll; high-volume extraction requires many scroll iterations
Execution Efficiency
- Batch orchestration: Loop through multiple hashtags serially in one session; do not parallelize within one browser. Add 2–3s intervals between navigations.
- Test before batch execution: Test with 1 hashtag first, then run the full batch.
- Error resumption: Save results page-by-page; resume from the last successful page on failure.
Experience Notes
Path: {working-directory}/browser-act-skill-forge-memories/tiktok-scraper-tiktok-hashtag-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, better path found), append a line:
{YYYY-MM-DD}: {what happened} → {conclusion}
Normal execution does not write to the file.
Frequently asked questions about TikTok Hashtag Videos
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.
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.
X Tweet Search
Efficiently scrape and collect tweets from X.
