TikTok

TikTok Post Scraper

Scrapes data from TikTok posts (videos) by URL — author, stats, hashtags, and media URLs.

Run on Apify87 userson Apify, measured 2026-08-24

What it extracts

Every field below comes from the Actor’s published dataset schema.

FieldDescriptionType
idPost IDtext
descDescriptiontext
createTimeCreated Atdate
video.durationDuration (seconds)number
video.ratioVideo Qualitytext
video.coverCover Imageimage
video.playAddrPlay URLlink
video.downloadAddrDownload URLlink
video.bitrateBitratenumber
author.idAuthor IDtext
author.uniqueIdUsernametext
author.nicknameDisplay Nametext
author.avatarLargerProfile Pictureimage
author.signatureBiotext
author.verifiedVerifiedboolean
stats.diggCountLikesnumber
stats.shareCountSharesnumber
stats.commentCountCommentsnumber
stats.playCountViewsnumber
stats.collectCountSavesnumber
locationCreatedLocationtext
diversificationLabelsContent Labelsarray
suggestedWordsSuggested Wordsarray
contents.textExtraHashtagsarray
sourceUrlSource URLlink
successSuccessboolean

Input parameters

Generated from the Actor’s input schema — the same fields the Apify console shows.

ParameterTypeRequiredDescription
startUrlsarrayRequiredList of TikTok post URLs to scrape (e.g. https://www.tiktok.com/@user/video/1234567890).
proxyConfigurationobjectOptionalSelect proxies to be used by the scraper. Residential proxies are recommended.

API access

Run this Actor from your own code over the Apify API.

Inputjson
{
  "startUrls": [
    {
      "url": "https://www.tiktok.com/@ethan.stee1e/video/7484309187241987350"
    }
  ]
}
REST — run and get resultsbash
curl -X POST \
  "https://api.apify.com/v2/acts/logical_scrapers~tiktok-post-scraper/run-sync-get-dataset-items?token=YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"startUrls":[{"url":"https://www.tiktok.com/@ethan.stee1e/video/7484309187241987350"}]}'
JavaScript — apify-clientjavascript
import { ApifyClient } from 'apify-client'

const client = new ApifyClient({ token: 'YOUR_API_TOKEN' })

const run = await client.actor('logical_scrapers~tiktok-post-scraper').call({
  "startUrls": [
    {
      "url": "https://www.tiktok.com/@ethan.stee1e/video/7484309187241987350"
    }
  ]
})

const { items } = await client.dataset(run.defaultDatasetId).listItems()
console.log(items)
Python — apify-clientpython
from apify_client import ApifyClient

client = ApifyClient("YOUR_API_TOKEN")

run = client.actor("logical_scrapers~tiktok-post-scraper").call(run_input={
    "startUrls": [
        {
            "url": "https://www.tiktok.com/@ethan.stee1e/video/7484309187241987350",
        },
    ],
})

for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

Runs are executed on Apify. Create an API token in your Apify account, then call the Actor over REST or with the official client for your language. The same input object works in the Apify console, so you can test interactively before automating.

Pricing

Pay per event — you are charged for each successfully scraped result item.

Current rates are published on the Apify listing and can change, so they are not duplicated here. See pricing on Apify

Reliability

99.4% run success rate

Measured across all public Goldmine Actors on Apify, 2026-08-24. This is an account-level figure, not a per-Actor benchmark — per-Actor speed and completeness benchmarks are not yet published. Source.

Field and input tables are generated from this Actor's published schemas. Usage figures measured 2026-08-24 from the Apify listing.