It returns normalized TikTok post objects from the keyword video tab.
Search TikTok videos by keyword
Search TikTok video results for a keyword and return normalized post payloads ready for analytics or ingestion.
Get started with a simple API call.
const response = await fetch('https://api.crawlkit.sh/v1/crawl/tiktok/search-keyword', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
"query": "healthy recipes",
"cursor": 0,
"options": {
"timeout": 30000
}
})
});
const { data } = await response.json();
console.log(data.posts.length, data.posts[0]?.description);Everything you need for reliable tiktok search keyword workflows.
Return public video hits for a query from TikTok search.
Results use the same post structure as your other TikTok content endpoints.
Continue through result pages without rebuilding your parser.
Get started in minutes with our simple API.
Sign up for free and get your API key instantly. No credit card required.
Use our simple REST API with your favorite programming language.
Receive clean JSON responses ready to use in your application.
Get clean, structured JSON data with every request. Our API returns comprehensive data including status codes, timing information, and your remaining credits.
{
"success": true,
"data": {
"query": "healthy recipes",
"posts": [
{
"id": "749201930120",
"postUrl": "https://www.tiktok.com/@foodlab/video/749201930120",
"description": "Three fast healthy dinners.",
"mediaType": "video"
}
],
"pagination": {
"cursor": 12,
"hasMore": true
},
"timing": {
"total": 2550
},
"creditsUsed": 1,
"creditsRemaining": 93
}
}Common applications for TikTok Search Keyword.
Track how TikTok content shifts around new keywords and formats.
Collect public examples around themes, products, or hooks.
Run recurring keyword snapshots for reporting or alerting.
Everything you need to know about the TikTok Search Keyword API.
It returns normalized TikTok post objects from the keyword video tab.
Yes. Use pagination.cursor to fetch additional results.
TikTok Search Keyword uses 1 credit per request.
Get 100 free credits to test the API. No credit card required.