TikTok Search Results Scraper avatar

TikTok Search Results Scraper

Pricing

from $2.85 / 1,000 tiktok video results

Go to Apify Store
TikTok Search Results Scraper

TikTok Search Results Scraper

Export ranked public TikTok search videos for keyword research, creator discovery, brand monitoring, and social listening.

Pricing

from $2.85 / 1,000 tiktok video results

Rating

0.0

(0)

Developer

Hanna Nosova

Hanna Nosova

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

an hour ago

Last modified

Categories

Share

This TikTok search scraper exports public video results by keyword for content research and creator discovery. Use the TikTok video search scraper workflow to retain each search keyword and rank alongside creator, caption, engagement, publication time, cover image, music, and direct TikTok URLs. For automated workflows, the TikTok keyword search API-compatible input accepts one or more public search terms.

Ready-to-run examples

Open a public example to inspect its input, run it, or reuse it as a task:

{
"queries": ["openai", "wireless earbuds"],
"maxResultsPerQuery": 20
}

Output example

{
"query": "openai",
"position": 1,
"videoId": "7665717073317809439",
"videoUrl": "https://www.tiktok.com/@creator/video/7665717073317809439",
"caption": "Public video caption",
"authorUsername": "creator",
"playCount": 12345,
"likeCount": 678,
"scrapedAt": "2026-08-30T00:00:00.000Z"
}

Input settings

FieldDescription
queriesOne or more public TikTok video search keywords.
maxResultsPerQueryMaximum unique videos returned for each keyword (1–200).
proxyConfigurationOptional proxy configuration when your network location needs to differ.

Exported fields

FieldDescription
query, positionRequested keyword and ordinal position within that keyword.
videoId, videoUrlTikTok video identifier and direct public URL.
captionPublic video caption when supplied.
authorUsername, authorDisplayName, authorUrlPublic creator identity and profile URL.
createdAt, durationPublication timestamp and video duration in seconds.
playCount, likeCount, commentCount, shareCountPublic engagement totals.
coverUrl, musicTitlePublic cover image and music title when supplied.
scrapedAtISO timestamp at extraction.

Tips and limits

  • Use specific keywords for more focused results.
  • TikTok can return fewer results than requested.
  • Only public, no-login search-result metadata is exported. Fields absent from the public result are returned as null.

API usage

Run fetch_cat/tiktok-search-results-scraper from the Console, API, or MCP. Retrieve the default dataset after the run completes.

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: process.env.APIFY_TOKEN });
const run = await client.actor('fetch_cat/tiktok-search-results-scraper').call({ queries: ['openai'], maxResultsPerQuery: 20 });
const { items } = await client.dataset(run.defaultDatasetId).listItems();
from apify_client import ApifyClient
client = ApifyClient('YOUR_APIFY_TOKEN')
run = client.actor('fetch_cat/tiktok-search-results-scraper').call(run_input={'queries': ['openai'], 'maxResultsPerQuery': 20})
items = client.dataset(run['defaultDatasetId']).list_items().items
curl "https://api.apify.com/v2/acts/fetch_cat~tiktok-search-results-scraper/runs?token=$APIFY_TOKEN" \
-H 'content-type: application/json' -d '{"queries":["openai"],"maxResultsPerQuery":20}'

Who is it for?

Use this Actor when you need a repeatable keyword-based TikTok research export for content research, creator discovery, campaign reporting, or trend monitoring.

Typical users include:

  • content teams comparing which videos rank for campaign keywords;
  • creator researchers building public prospect lists;
  • brand teams monitoring public mentions and engagement;
  • analysts exporting ranked results to CSV, JSON, Excel, or a warehouse;
  • automation builders feeding normalized TikTok search data into agents and workflows.

MCP and agent use

AI agents can invoke the same validated input through the Apify MCP server. Give the agent a keyword and a result limit; each returned row preserves its source query.

Claude Code setup

Add the Apify MCP server to Claude Code with this command:

$claude mcp add --transport http apify "https://mcp.apify.com?tools=fetch_cat/tiktok-search-results-scraper"

Or add it to your MCP configuration:

{
"mcpServers": {
"apify": {
"type": "http",
"url": "https://mcp.apify.com?tools=fetch_cat/tiktok-search-results-scraper"
}
}
}

Example prompts

  • “Search TikTok for openai tutorials and return the first 20 videos with creator and engagement metrics.”
  • “Find 50 TikTok videos about wireless earbuds; group the exported rows by creator and rank them by likes.”
  • “Run a TikTok keyword search for back to school and export the video URLs, captions, music titles, and publication times.”

The actor accepts the same queries and maxResultsPerQuery values shown in the input recipe. Your agent can save the resulting dataset to a spreadsheet, warehouse, or follow-up workflow.

Troubleshooting

If a keyword returns fewer rows than requested, try a more specific phrase and run again later. TikTok search ranking and public result availability can change. For a reproducible report, retain the query, run time, and exported videoId values.

Pricing

The Actor charges per exported public video result. See the live Pricing tab for current tier pricing.

FAQ

Can I search multiple keywords? Yes. Every result retains its source query.

Are downloads or private data included? No. This Actor exports only public search-result metadata and links.

Support

For reproducible issues, include the keyword, requested result limit, and the affected output field.