GET/tiktok/search/hashtag

Search Hashtag

Search TikTok hashtags by keyword. Returns matching hashtags with view counts, video counts, and growth signals so you can find trending and niche tags to target.

Quick Start

cURL
curl "https://creatorcrawl.com/api/tiktok/search/hashtag?keyword=fitness" \
  -H "x-api-key: YOUR_API_KEY"

Parameters

NameTypeRequiredDescription
keywordstringRequiredHashtag keyword to search
cursorstringOptionalPagination 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://creatorcrawl.com/api/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://creatorcrawl.com/api/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`))

Related Endpoints

Explore More

Takes 60 seconds

Add one line to your
MCP config. Ship today.

250 free credits. No card. Works with Claude, Cursor, Windsurf, Zed, and any MCP client.