Search TikTok videos
/tiktok/searchSearches TikTok videos by keyword with cursor-based pagination.
Crawlora Docs
Research public video, hashtag, creator, and music signals for trend analysis and reporting.
Research public video, hashtag, creator, and music signals for trend analysis and reporting.
Only endpoints that exist in the generated endpoint metadata are linked here. Missing optional endpoints are intentionally omitted.
/tiktok/searchSearches TikTok videos by keyword with cursor-based pagination.
/tiktok/post/{id}Returns the TikTok video detail payload for a video id.
| Field | Notes |
|---|---|
| keyword | Workflow field; map to exact endpoint response fields from endpoint docs. |
| hashtag | Workflow field; map to exact endpoint response fields from endpoint docs. |
| video_id | Workflow field; map to exact endpoint response fields from endpoint docs. |
| creator | Workflow field; map to exact endpoint response fields from endpoint docs. |
| music | Workflow field; map to exact endpoint response fields from endpoint docs. |
| views | Workflow field; map to exact endpoint response fields from endpoint docs. |
| likes | Workflow field; map to exact endpoint response fields from endpoint docs. |
| comments | Workflow field; map to exact endpoint response fields from endpoint docs. |
| posted_at | Workflow field; map to exact endpoint response fields from endpoint docs. |
| score | Workflow field; map to exact endpoint response fields from endpoint docs. |
This example uses the real Search TikTok videos endpoint. Exact request fields come from the endpoint metadata.
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/tiktok/search?keyword=dance&count=10" \
-H "x-api-key: $CRAWLORA_API_KEY"Use endpoint detail pages for exact response schemas. This recipe does not invent response fields.
{
"code": 200,
"msg": "OK",
"data": {
"type": 1,
"data": [
{
"item": {
"id": "7627480436649757959"
}
}
],
"cursor": 20,
"has_more": 1,
"status_code": 0
}
}Store snapshots by video ID and timestamp so trend scores can be recalculated as engagement changes.
Estimate usage by multiplying requests by endpoint credit cost. The table below only shows real credit costs available from the billing constants.
| Endpoint | Credit cost | Docs |
|---|---|---|
| Search TikTok videos | 8 credits/request | /docs/TikTok/tiktok-search |
| Retrieve TikTok video details | 8 credits/request | /docs/TikTok/tiktok-post |
Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora termsUse this recipe for workflow shape, then rely on endpoint reference pages for exact paths, request schemas, response schemas, and credit costs.