TikTok User Posts Scraper — every video + stats avatar

TikTok User Posts Scraper — every video + stats

Pricing

from $1.00 / 1,000 videos

Go to Apify Store
TikTok User Posts Scraper — every video + stats

TikTok User Posts Scraper — every video + stats

Every video an account has posted, one row each, with play counts, likes, hashtags and a no-watermark link. Date ranges seek directly instead of walking from the top.

Pricing

from $1.00 / 1,000 videos

Rating

0.0

(0)

Developer

Mu0i

Mu0i

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

14 hours ago

Last modified

Share

TikTok User Posts Scraper — every video + stats

Give it handles, profile URLs or user IDs. Get one row per video: play count, likes, comments, shares, saves, caption, hashtags, mentions, sound, and a direct no-watermark link.

No login, no cookies, no browser.

A date range costs only the pages inside it

Most scrapers page from the newest post down to the window you asked for and charge you for everything they walked past. Here the cursor is a timestamp, so postedBefore seeks straight to that date.

Asking for posts before 2025-06-01 on an account with years of history returned 40 posts dated 2025-04-22 to 2025-05-30 in two pages — it did not start at 2026 and work down.

Pinned posts, and why they matter to a date range

Pinned posts are returned first regardless of age. On one account, page one ran from 2026-08-11 down to a pinned post from 2023-11-16. A scraper that applies your date cutoff naively stops there, on the first page, with almost nothing collected.

This Actor exempts pinned posts from the date bounds, so the walk continues to the real cutoff. Every row is flagged isPinned, and includePinned: false leaves them out entirely — which gives you a clean date window:

rowsdates
postedAfter: 2026-07-01, pinned included442023-11-16 … 2026-08-11 (three pinned)
the same, includePinned: false412026-07-01 … 2026-08-11

How to use

  1. Click Try for free at the top of this page. Apify creates a free account if you do not have one — no card is needed to run this.
  2. Put what you want scraped into Profiles — one per line.
  3. Set Max posts per profile to bound the run, then press Start. You are billed per row, so this field is also your budget.
  4. Rows show up in the Dataset tab while the run is still going. Export to JSON, CSV, Excel or XML from there, or read them over the API.

Input

field
profilesrequired@nasa, nasa, https://www.tiktok.com/@nasa, a sec_uid, or a numeric user ID
maxPostsPerProfile100Set it high to take everything — the walk reaches the end and stops
postedAfterISO date. Stops as soon as posts are older than this
postedBeforeISO date. Starts the walk here instead of at the newest post
includePinnedonPinned posts ignore your date range by nature; turn off to exclude them
includeDownloadUrlsonNo-watermark link per row, free — it is in the same response

Every field, with its default — paste the whole block and delete what you do not need:

{
"profiles": [
"@nasa"
],
"maxPostsPerProfile": 100,
"postedAfter": "",
"postedBefore": "",
"includePinned": true,
"includeDownloadUrls": true
}

Output

field
videoId, url, description, createdAt, durationMs, width, height
playCount, likeCount, commentCount, shareCount, saveCount, repostCount, downloadCount
isPinned, isPhotoPost, region
hashtags[], mentions[]mentions carry userId and secUid
musicId, musicTitle, musicAuthor
coverUrl, dynamicCoverUrl
noWatermarkUrl, noWatermarkSizewhen enabled
authorUsername, authorNickname, authorId, authorSecUid

One row, exactly as it lands in your dataset (long signed CDN links shortened here for readability):

{
"videoId": "7673631102036184334",
"url": "https://www.tiktok.com/@natgeo/video/7673631102036184334",
"description": "As the moon's shadow swept across Europe on August 12, the continent saw its first total solar eclipse in 27 years—but nowhere had a view quite as dramatic as Spain. National Geographic photographer R …",
"createdAt": "2026-08-13T21:28:15.000Z",
"isPinned": false,
"isPhotoPost": false,
"playCount": 9086,
"likeCount": 665,
"commentCount": 14,
"shareCount": 1,
"saveCount": 14,
"repostCount": 0,
"downloadCount": 0,
"durationMs": 23315,
"width": 576,
"height": 1024,
"coverUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oIsebU3…?…",
"dynamicCoverUrl": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-p-0068-tx/oUAaHIv…?…",
"hashtags": [],
"mentions": [],
"musicId": "7673631195946617613",
"musicTitle": "original sound - natgeo",
"musicAuthor": "National Geographic",
"region": "EC",
"authorUsername": "natgeo",
"authorNickname": "National Geographic",
"authorId": "6780344874811442181",
"authorSecUid": "MS4wLjABAAAAEf96k3JW8-3eOhgzgQswlFF6ZDnn1dzqWWorJjwDsiNZymqTtvOcFhp_RiYYST6s",
"noWatermarkUrl": "https://v45.tiktokcdn-us.com/95c9bfae1f0cb7287f62086d6b69caf4/6a7fc18a…?…",
"noWatermarkSize": 348422
}

Notes

  • url is TikTok's own canonical link. A photo post therefore points at /photo/ and a video at /video/, and a row whose author handle is missing gets null rather than a link that would 404.
  • Completeness. This is the most reliable pagination on TikTok's public surface: walked to the end it returned 230 videos across 12 pages with zero duplicates, and it stops cleanly rather than looping.
  • No-watermark links are free here — the same response carries them, so there is no per-video surcharge. They are signed TikTok CDN links and expire within hours; if you need the files kept, use the TikTok Video Downloader actor, which stores them and also handles photo-post images.
  • Photo posts (slideshows) appear as rows flagged isPhotoPost. Their individual images are not here — the downloader actor has those.
  • Private accounts return no posts. A handle that does not exist is logged and skipped; other accounts in the same run are unaffected.
  • Only public data. There is no login, so nothing hidden from a logged-out visitor is reachable.

Run it from your own code

Every Actor is an API endpoint. This starts a run, waits for it, and returns the rows in one call — swap in your token from Settings → Integrations:

curl -X POST 'https://api.apify.com/v2/acts/mu0i~tiktok-user-posts/run-sync-get-dataset-items?token=YOUR_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"profiles": [
"@nasa"
],
"maxPostsPerProfile": 100,
"postedAfter": "",
"postedBefore": "",
"includePinned": true,
"includeDownloadUrls": true
}'

Pricing

Pay per result — you are billed for rows you receive, not for time or compute.

EventPer 1,000What one unit is
video$2.50one video in the dataset

Paid Apify plans pay less than this. The table above is the free-plan rate. Starter, Scale and Business each get a lower per-unit price — up to 60% off on Business — and the Actor's Pricing tab shows every tier before you run anything.

Starting a run costs $0.00001 — a cent per thousand runs — and there is no run minimum. You are never billed for a run that found nothing. If an input has nothing to collect the run says so in a row of the dataset — never a silently empty result, and never a charge. A run that fails because the data could not be reached fails loudly, because that one is worth retrying.

Fourteen Actors covering the whole public TikTok surface. Same billing rules and the same guarantees throughout: billed once for each row you receive, never billed for a run that found nothing, and told in the dataset why it found nothing.

ActorWhat it does
TikTok Search Scraper — videos, users, hashtagsKeyword search across every tab, deduplicated.
TikTok Hashtag Scraper — videos by hashtagEvery video under a hashtag, walked deep.
TikTok Trending Scraper — the real Explore feedThe app's real Explore feed, not Creative Center.
TikTok Profile Scraper — followers, likes, bioFollowers, likes, bio for any public account.
TikTok Comments Scraper — replies, no duplicatesEvery comment and reply, no duplicate pages.
TikTok Video Downloader — no watermark MP4/MP3No-watermark MP4, MP3, covers and subtitles.
TikTok Transcript Scraper — no AI, no waitingSubtitles from TikTok's own caption track.
TikTok Sound Scraper — videos using a soundVideos that actually use a sound, filtered.
TikTok Live Scraper — rooms, viewers, streamsLive rooms with playable stream links.
TikTok Places Scraper — locations and reviewsLocations with addresses, coordinates and reviews.
TikTok Shop Scraper — Products, Sellers & ReviewsShop search, product detail, seller catalogue.
TikTok Shop Category Scraper — every productEvery product in a Shop category and its subcategories.
TikTok Shop Reviews Scraper — full archiveThe full review archive for a Shop product.