Tiktok Scraper avatar
Tiktok Scraper
Try for free

3 days trial then $35.00/month - No credit card required now

View all Actors
Tiktok Scraper

Tiktok Scraper

mcdowell/tiktok
Try for free

3 days trial then $35.00/month - No credit card required now

An advanced TikTok scraper that lets you collect videos, profiles, posts, and other publicly available data on TikTok. Download TikTok data as a HTML, JSON, CSV, Excel, or XML

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn mode

Node.js

Python

curl

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4const client = new ApifyClient({
5    token: '<YOUR_API_TOKEN>',
6});
7
8// Prepare Actor input
9const input = {
10    "hashtags": [
11        "tiktokshortfilm"
12    ],
13    "maxVideosPerPage": 20,
14    "maxCommentsPerPost": 20,
15    "maxRequestRetries": 3,
16    "maxConcurrency": 5,
17    "proxyConfiguration": {
18        "useApifyProxy": true,
19        "apifyProxyCountry": "US"
20    }
21};
22
23(async () => {
24    // Run the Actor and wait for it to finish
25    const run = await client.actor("mcdowell/tiktok").call(input);
26
27    // Fetch and print Actor results from the run's dataset (if any)
28    console.log('Results from dataset');
29    const { items } = await client.dataset(run.defaultDatasetId).listItems();
30    items.forEach((item) => {
31        console.dir(item);
32    });
33})();
Developer
Maintained by Community
Actor metrics
  • 25 monthly users
  • 91.1% runs succeeded
  • 38.6 days response time
  • Created in Oct 2022
  • Modified 11 months ago