GET/tiktok/search/hashtag

Search 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

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://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`))

Related Endpoints

Explore More

Takes 60 seconds

Your agents are one config file away from six platforms.

250 free API calls. No card. Add the MCP server to Claude, Cursor, Windsurf, or Zed, or hit the REST API from any language.