tiktok-profile-videos
TikTok user profile video scraper: input a TikTok username → output the user's profile info plus paginated video list with full metadata (engagement stats, music, video meta). Use when user mentions TikTok profile scraping, scrape TikTok user videos, get TikTok creator videos, extract TikTok profile data, TikTok user posts, TikTok account video collection, collect TikTok profile page videos, TikTok creator video list, TikTok creator data, TikTok profile scraper, tiktok user scraper, tiktok creator scraper. Also applies to influencer research, competitor analysis, content archiving for a specific TikTok creator, or extracting all posts from a TikTok account.
What this skill does
# TikTok — Profile Videos
> TikTok username → user profile info + paginated video list with full metadata
## Language
All process output to user (progress updates, process notifications) follows the user's language.
## Objective
Extract the video list and profile metadata for a given TikTok user using the `/api/post/item_list/` endpoint triggered by navigating to their profile page.
## Prerequisites
- Browser is open and can access `https://www.tiktok.com`
- No login required for public profiles
- 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 via `eval "$(python scripts/xxx.py {params})"`. `$(...)` is bash syntax; it is recommended to use the bash tool for execution.
### Network Capture: Profile video list (parameters injected via URL navigation)
`/api/post/item_list/` requires TikTok's dynamic signing and the user's `secUid` (internal ID). Navigate to the profile page — TikTok's JS resolves the secUid and triggers the signed request automatically:
1. `navigate https://www.tiktok.com/@{username}`
2. `wait stable`
3. `network requests --type xhr,fetch --filter "post/item_list"`
4. `network request <id>`
Endpoint characteristic: URL contains `/api/post/item_list/` with `secUid={secUid}&cursor=0`
Note: The `secUid` is a long internal identifier (e.g., `MS4wLjABAAAA-VASjiXTh7wDDyXvjk10VFhMWUAoxr8bgfO1kAL1-9s`) visible in the captured request URL — record it for pagination requests.
Error handling: If no matching request appears, verify the profile page loaded (`screenshot`). Private accounts return an empty `itemList`. If the page shows a region block, switch to a non-HK proxy browser.
Output example:
```json
{
"cursor": "1778468677570", // timestamp-based cursor for next page
"hasMore": true, // false when all videos loaded
"itemList": [
{
"id": "7212410220977392938",
"desc": "Daily Push Up Workout🚀#fitness",
"createTime": 1679270124,
"isAd": false,
"isPinned": false,
"isSponsored": false,
"locationCreated": "US",
"author": {
"id": "6803405475100181510",
"uniqueId": "marcusriosofficial",
"nickname": "Marcus Rios",
"verified": false,
"signature": "Former NFL Athlete 🏈\n📧[email protected]",
"bioLink": null,
"avatarThumb": "https://...",
"privateAccount": false
},
"authorStats": {
"followerCount": 423500,
"followingCount": 50,
"heart": 10000000,
"videoCount": 1277,
"diggCount": 869
},
"authorStatsV2": {
"followerCount": "423500",
"followingCount": "50",
"heart": "10000000",
"videoCount": "1277"
},
"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
}
]
}
```
To build the `webVideoUrl` for each item: `https://www.tiktok.com/@{item.author.uniqueId}/video/{item.id}`
Profile info is available from the first item's `author` and `authorStats` fields: followerCount, following, heart total, video count, bio, verified status.
### Network Capture: Profile video list pagination (page 2+)
After reading page 1, scroll down to load more videos:
1. `scroll down`
2. `wait stable`
3. `network requests --type xhr,fetch --filter "post/item_list"`
4. Find the new request (cursor value changed from the previous page's cursor)
5. `network request <id>`
Termination: `hasMore` is `false` in response, or `itemList` is empty.
## Pagination
**DOM Pagination**: Scroll triggers new `post/item_list` requests with timestamp-based cursor. Each page returns 16 items. Termination: `hasMore === false` or empty `itemList`.
## Success Criteria
`itemList.length >= 1` and first item has non-null `id`, `stats.playCount`, `author.uniqueId`, `authorStats.followerCount`
## Known Limitations
- Requires non-HK proxy (TikTok shut down in Hong Kong)
- `post/item_list` requires dynamic signing + secUid resolved by TikTok's JS — always use navigate + network capture
- Private accounts return empty `itemList`
- `authorStats.heartCount` may overflow to negative for accounts with very high like counts — use `authorStats.heart` instead
- `followers/following` lists are not available via this capability (separate scraper needed, requires login)
## Execution Efficiency
- **Batch orchestration**: Loop through multiple usernames serially in one session; add 2–3s between profile navigations.
- **Test before batch execution**: Test with 1 username first before running the full list.
- **Error resumption**: Save results profile-by-profile; resume from the failed username on error.
## Experience Notes
Path: `{working-directory}/browser-act-skill-forge-memories/tiktok-scraper-tiktok-profile-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.
Related in Ads & Marketing
ads
IncludedMulti-platform paid advertising audit and optimization skill. Analyzes Google, Meta, YouTube, LinkedIn, TikTok, Microsoft, and Apple Ads. 250+ checks with scoring, parallel agents, industry templates, and AI creative generation.
banana
IncludedAI image generation Creative Director powered by Google Gemini Nano Banana models. Use this skill for ANY request involving image creation, editing, visual asset production, or creative direction. Triggers on: generate an image, create a photo, edit this picture, design a logo, make a banner, visual for my anything, and all /banana commands. Handles text-to-image, image editing, multi-turn creative sessions, batch workflows, and brand presets.
rpg-migration-analyzer
IncludedAnalyzes legacy RPG (Report Program Generator) programs from AS/400 and IBM i systems for migration to modern Java applications. Extracts business logic from RPG III/IV/ILE source code, identifies data structures (D-specs), file operations (F-specs), program dependencies (CALLB/CALLP), and converts RPG constructs to Java equivalents. Generates migration reports, complexity estimates, and Java implementation strategies with POJO classes, JPA entities, and service methods. Use when modernizing AS/400 or IBM i legacy systems, analyzing RPG source files (.rpg, .rpgle, .RPGLE), converting RPG to Java, mapping data specifications to Java classes, planning legacy system migration, or when user mentions RPG analysis, Report Program Generator, RPG III/IV/ILE, AS/400 modernization, IBM i migration, packed decimal conversion, or mainframe application rewrite.
brand-library-architect
IncludedBuild a complete brand library for a product — visual asset render pipeline, brand documentation set (BRAND, COPY, MANIFESTO, BIOS, FAQ, GLOSSARY, TONE, PRICING), open-source convention files (README, CONTRIBUTING, SECURITY, CODE_OF_CONDUCT), and a self-contained press kit. This skill should be used when the user asks to "build a brand library / brand kit / press kit / brand assets" for a product, "set up a brand library workflow," "create a positioning manifesto plus visual identity," or any combination of brand documentation + visual asset pipeline. Apply phase-by-phase or run end-to-end. Templates are product-agnostic and use {{TOKEN}} placeholders the skill prompts the user to fill.
writing-tech-post
IncludedAuthors engineering blog posts end-to-end: launch deep-dives, incident postmortems, architecture migrations, performance case studies, tutorials, AI/agent system writeups, security disclosures, and research-to-product translations. Picks the correct archetype, plans the abstraction ladder, enforces an evidence cadence (diagrams, benchmarks, profiles, traces, code, ablations), tunes voice against publisher house styles (Datadog, Vercel, GitHub, AWS, Meta, Cloudflare, Jane Street), and runs a pre-publish gate for narrative momentum and disclosure ethics. Use when drafting a new engineering post, restructuring a draft that feels flat, deciding which evidence form belongs where, validating that depth and product context are balanced, or preparing a postmortem, migration, or performance narrative for external publication. Do not use for API reference documentation, README authoring, marketing copy, release notes, generic SEO content, ghost-written executive thought leadership, or non-engineering long-form essays.
blog-google
IncludedGoogle API integration for blog performance: PageSpeed Insights, CrUX Core Web Vitals with 25-week history, Search Console performance, URL Inspection, Indexing API, GA4 organic traffic, NLP entity analysis for E-E-A-T, YouTube video search for embedding, and Google Ads Keyword Planner. Progressive feature availability based on credential tier (API key, OAuth/service account, GA4, Ads). Shares config with claude-seo at ~/.config/claude-seo/google-api.json. Use when user says "google data", "page speed", "core web vitals", "search console", "indexation", "GA4", "keyword research", "nlp entities", "blog performance", "youtube search", "google api setup".