🏯 Tiktok Scraper (Pay Per Result) avatar
🏯 Tiktok Scraper (Pay Per Result)
Try for free

Pay $0.10 for 1,000 posts

View all Actors
🏯 Tiktok Scraper (Pay Per Result)

🏯 Tiktok Scraper (Pay Per Result)

apidojo/tiktok-scraper
Try for free

Pay $0.10 for 1,000 posts

The most complete and effective solution for extracting data from TikTok.com. User, Profile, Hashtag, Music, Location, Tag, and many other support is just the beginning. The intelligent algorithm allows TikTok Scraper to retrieve any posts/videos around the platform in the blink of an eye!

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 more

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    "startUrls": [
11        "https://www.tiktok.com/@billieeilish/video/7050551461734042926",
12        "https://www.tiktok.com/@gordonramsayofficial",
13        "https://www.tiktok.com/search?q=Recipes",
14        "https://www.tiktok.com/tag/duet",
15        "https://www.tiktok.com/music/original-sound-Newcastle-United-7297730198175402784",
16        "https://www.tiktok.com/place/New-York-22535796481546927",
17        "https://vm.tiktok.com/ZGe59gmvQ/"
18    ],
19    "maxItems": 1000,
20    "keywords": [
21        "Artificial Intelligence",
22        "podcast"
23    ],
24    "dateRange": "DEFAULT",
25    "location": "US",
26    "customMapFunction": (object) => { return {...object} }
27};
28
29(async () => {
30    // Run the Actor and wait for it to finish
31    const run = await client.actor("apidojo/tiktok-scraper").call(input);
32
33    // Fetch and print Actor results from the run's dataset (if any)
34    console.log('Results from dataset');
35    console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
36    const { items } = await client.dataset(run.defaultDatasetId).listItems();
37    items.forEach((item) => {
38        console.dir(item);
39    });
40})();
41
42// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs
Developer
Maintained by Community
Actor metrics
  • 63 monthly users
  • 3 stars
  • 99.7% runs succeeded
  • 3 hours response time
  • Created in Dec 2023
  • Modified about 14 hours ago