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 more

1# Set API token
2API_TOKEN=<YOUR_API_TOKEN>
3
4# Prepare Actor input
5cat > input.json <<'EOF'
6{
7  "search": [
8    "anime",
9    "tiktok"
10  ],
11  "startUrls": [
12    "https://www.tiktok.com/search?q=music&t=1670685477846",
13    "https://www.tiktok.com/search?q=dance&t=1670685484412",
14    "https://www.tiktok.com/search?q=challenge&t=1670685494590"
15  ],
16  "maxItems": 10,
17  "endPage": 1,
18  "extendOutputFunction": "($) => { return {} }",
19  "customMapFunction": "(object) => { return {...object} }",
20  "proxy": {
21    "useApifyProxy": true
22  }
23}
24EOF
25
26# Run the Actor using an HTTP API
27# See the full API reference at https://docs.apify.com/api/v2
28curl "https://api.apify.com/v2/acts/epctex~tiktok-search-scraper/runs?token=$API_TOKEN" \
29  -X POST \
30  -d @input.json \
31  -H 'Content-Type: application/json'
Developer
Maintained by Community
Actor metrics
  • 34 monthly users
  • 4 stars
  • 100.0% runs succeeded
  • 13 hours response time
  • Created in Jan 2023
  • Modified 1 day ago