GET
/tiktok/search/hashtagSearch Hashtag
Search for TikTok hashtags by keyword. Returns matching hashtags with view counts and video counts.
Quick Start
cURL
curl "https://api.creatorcrawl.com/v1/tiktok/search/hashtag?keyword=fitness" \
-H "x-api-key: YOUR_API_KEY"Parameters
| Name | Type | Required | Description |
|---|---|---|---|
keyword | string | Required | Hashtag keyword to search |
cursor | string | Optional | Pagination cursor |
Response
JSON Response
{
"hashtags": [
{
"name": "fitness",
"viewCount": 98700000000,
"videoCount": 45000000
}
],
"cursor": "10",
"hasMore": true
}Every request costs 1 credit. Response data is live -- never cached.
Use Cases
Hashtag research
Find the most popular hashtags in your niche for content strategy.
Trend analysis
Track hashtag popularity over time to spot emerging trends.
Campaign tracking
Monitor branded hashtag campaigns and their reach.
Code Examples
Python
import requests
resp = requests.get(
"https://api.creatorcrawl.com/v1/tiktok/search/hashtag",
params={"keyword": "fitness"},
headers={"x-api-key": "YOUR_API_KEY"},
)
for tag in resp.json()["hashtags"]:
print(f"#{tag['name']} - {tag['viewCount']} views")JavaScript
const resp = await fetch(
"https://api.creatorcrawl.com/v1/tiktok/search/hashtag?keyword=fitness",
{ headers: { "x-api-key": "YOUR_API_KEY" } }
)
const { hashtags } = await resp.json()
hashtags.forEach(t => console.log(`#${t.name} - ${t.viewCount} views`))