Tiktok Search Scraper avatar
Tiktok Search Scraper
Try for free

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

View all Actors
Tiktok Search Scraper

Tiktok Search Scraper

epctex/tiktok-search-scraper
Try for free

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

Unleash the power of data extraction with our advanced TikTok Search Scraper. Gather videos, hashtags, posts, URLs, share numbers, followers, hearts, names, music-related data, and more. Download data in various formats including 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    "search": [
11        "anime",
12        "tiktok"
13    ],
14    "startUrls": [
15        "https://www.tiktok.com/search?q=music&t=1670685477846",
16        "https://www.tiktok.com/search?q=dance&t=1670685484412",
17        "https://www.tiktok.com/search?q=challenge&t=1670685494590"
18    ],
19    "maxItems": 10,
20    "endPage": 1,
21    "extendOutputFunction": ($) => { return {} },
22    "customMapFunction": (object) => { return {...object} },
23    "proxy": {
24        "useApifyProxy": true
25    }
26};
27
28(async () => {
29    // Run the Actor and wait for it to finish
30    const run = await client.actor("epctex/tiktok-search-scraper").call(input);
31
32    // Fetch and print Actor results from the run's dataset (if any)
33    console.log('Results from dataset');
34    const { items } = await client.dataset(run.defaultDatasetId).listItems();
35    items.forEach((item) => {
36        console.dir(item);
37    });
38})();
Developer
Maintained by Community
Actor metrics
  • 46 monthly users
  • 99.6% runs succeeded
  • 0.0 days response time
  • Created in Jan 2023
  • Modified about 14 hours ago