TikTok Search Hashtag
Resolve a TikTok hashtag and return its public detail payload together with a normalized related-post feed.
Try on PlaygroundAuthentication
Send your Crawlkit API key as a Bearer token in the Authorization header.
Authorization: Bearer ck_your_api_keyRequest Parameters
Send these JSON body fields in your request payload.
| Name | Type | Description |
|---|---|---|
hashtag | string | Request field. |
cursor | number | Pagination cursor. |
Example Request
Use direct HTTP requests against the public API base URL.
Example request
1const response = await fetch('https://api.crawlkit.sh/v1/crawl/tiktok/search-hashtag', {2 method: 'POST',3 headers: {4 'Authorization': 'Bearer YOUR_API_KEY',5 'Content-Type': 'application/json'6 },7 body: JSON.stringify({8 "hashtag": "diyet",9 "cursor": 0,10 "options": {11 "timeout": 3000012 }13})14});15 16const { data } = await response.json();17console.log(data.hashtag.title, data.posts.length);Response
Success (200 OK): Returns service-specific structured payload.
Success response (200 OK)
1{2 "success": true,3 "data": {4 "hashtag": {5 "id": "315930120",6 "title": "diyet",7 "description": "Popular TikTok hashtag",8 "coverUrl": "https://p16-sign.tiktokcdn.com/...",9 "stats": {10 "videos": 82000,11 "views": 148000000012 }13 },14 "posts": [15 {16 "id": "749201930444",17 "postUrl": "https://www.tiktok.com/@fitchef/video/749201930444",18 "description": "Low-calorie meal prep ideas.",19 "mediaType": "video"20 }21 ],22 "pagination": {23 "cursor": 12,24 "hasMore": true25 },26 "timing": {27 "total": 284028 },29 "creditsUsed": 1,30 "creditsRemaining": 9131 }32}