TikTok Profile Posts Scraper avatar

TikTok Profile Posts Scraper

Pricing

from $20.00 / 1,000 results

Go to Apify Store
TikTok Profile Posts Scraper

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

code craker

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

1

Monthly active users

5 days ago

Last modified

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

FieldDescription
profileUrlOne 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.
profileUrlsSeveral profiles as an array. numberOfPosts applies per profile.
numberOfPostsMaximum videos to return per profile (default 100).
scrapeAllKeep scrolling/paginating until the target count, the date range boundary, or the end of the feed (default on).
timeSince / timeUntilInclusive date range (yyyy-mm-dd, UTC). The actor stops scrolling once the feed passes below timeSince.
cookiesOptional logged-in TikTok session (JSON cookie export). See Authentication below.
proxyConfigurationDefaults to Apify RESIDENTIAL proxy with US exits — TikTok blocks datacenter IPs.

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 cookies input, or a TIKTOK_COOKIES secret environment variable on the actor — a JSON cookie export or a name=value; name2=value2 string): the full profile feed is scraped with pagination, up to numberOfPosts videos 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_HTML in the run's key-value store when a run returns nothing.