TikTok Profile Posts Scraper
Pricing
from $20.00 / 1,000 results
TikTok Profile Posts Scraper
Paste a TikTok profile URL and get that account's videos for any period. Date-range filtering, multi-profile input, auto-pagination. Returns description, author, likes, comments, shares, plays, cover and video URL.
Pricing
from $20.00 / 1,000 results
Rating
0.0
(0)
Developer
code craker
Maintained by CommunityActor stats
0
Bookmarked
1
Total users
1
Monthly active users
5 days ago
Last modified
Categories
Share
Paste a TikTok profile URL and get that account's videos as structured data — description, author, publish date, likes, comments, shares, plays, cover image and the video URL. Supports several profiles per run, a date range, and auto-pagination.
Input
| Field | Description |
|---|---|
profileUrl | One profile: a full URL (https://www.tiktok.com/@tiktok), an @handle, a bare handle, or any video URL on the profile. Several profiles can be pasted one per line. |
profileUrls | Several profiles as an array. numberOfPosts applies per profile. |
numberOfPosts | Maximum videos to return per profile (default 100). |
scrapeAll | Keep scrolling/paginating until the target count, the date range boundary, or the end of the feed (default on). |
timeSince / timeUntil | Inclusive date range (yyyy-mm-dd, UTC). The actor stops scrolling once the feed passes below timeSince. |
cookies | Optional logged-in TikTok session (JSON cookie export). See Authentication below. |
proxyConfiguration | Defaults to Apify RESIDENTIAL proxy with US exits — TikTok blocks datacenter IPs. |
Authentication (optional but recommended)
TikTok answers the profile feed API for logged-out visitors with empty responses, no matter how clean the IP. The actor handles both cases:
- With a session (the
cookiesinput, or aTIKTOK_COOKIESsecret environment variable on the actor — a JSON cookie export or aname=value; name2=value2string): the full profile feed is scraped with pagination, up tonumberOfPostsvideos per profile. - Without a session: the actor falls back to the profile's public embed widget, which reliably serves roughly the 10 newest videos per profile, and enriches each with its full engagement stats from the video's own page.
Always use a throwaway TikTok account for cookies, never a personal one.
Output
One dataset item per video:
{"id": "7676134473112489247","webVideoUrl": "https://www.tiktok.com/@tiktok/video/7676134473112489247","text": "why do fans keep posting 🥚 ...","created_at": "2026-08-20T15:22:21.000Z","author": { "uniqueId": "tiktok", "username": "tiktok", "nickname": "TikTok", "id": "107955", "profileUrl": "https://www.tiktok.com/@tiktok" },"likesCount": 5938,"commentsCount": 1697,"sharesCount": 210,"viewsCount": 332000,"collectCount": 415,"duration": 34,"coverUrl": "https://...","musicName": "original sound","hashtags": ["fyp"],"profileHandle": "tiktok","profileUrl": "https://www.tiktok.com/@tiktok"}
Engagement fields also carry snake_case and camelCase aliases (digg_count/diggCount, play_count/playCount, ...) so the items are a drop-in replacement for common TikTok actor outputs.
Tips
- A private, banned or nonexistent profile is skipped with a warning instead of failing the run.
- For date-bounded monitoring (e.g. "last 7 days"), set
timeSince— the actor stops scrolling as soon as the feed passes the boundary. - Check
DEBUG_SCREENSHOT/DEBUG_HTMLin the run's key-value store when a run returns nothing.