Trends Search
Search for trending videos on TikTok and YouTube by keyword. Results include video metadata, stats, and author info.
Search Videos
GET /v1/trends/search
Request Parameters
Example
curl -X GET "https://api.influtics.com/v1/trends/search?keyword=marketing&platform=tiktok" \
-H "Authorization: Bearer YOUR_API_KEY"
Response
{
"success": true,
"data": {
"videos": [
{
"id": "...",
"url": "...",
"cover": "...",
"stats": {
"plays": 1000,
"likes": 100,
"comments": 10,
"shares": 5
},
"author": {
"username": "...",
"cover": "..."
}
}
],
"cursor": "next_page_token",
"hasMore": true
},
"meta": {
"request_id": "uuid",
"processing_time_ms": 450,
"credits_used": 1
}
}
Credits
1 credit per successful search request. No credit charged for validation errors or upstream failures.
Rate Limits
Monthly limits per plan:
When the limit is exceeded, the API returns a 429 Too Many Requests response with a Retry-After header indicating when the limit resets (start of next month).