GET/tiktok/hashtags/popular

Get Popular Hashtags

Get the most popular hashtags on TikTok right now. Returns trending hashtags with view counts and usage data.

Quick Start

cURL
curl "https://api.creatorcrawl.com/v1/tiktok/hashtags/popular" \
  -H "x-api-key: YOUR_API_KEY"

Parameters

This endpoint takes no parameters. Just call it with your API key.

Response

JSON Response
{
  "hashtags": [
    {
      "name": "fyp",
      "viewCount": 45000000000000
    },
    {
      "name": "viral",
      "viewCount": 12000000000000
    }
  ]
}

Every request costs 1 credit. Response data is live -- never cached.

Use Cases

Hashtag strategy

Identify the most popular hashtags to use in your TikTok content.

Trend monitoring

Track which hashtags are gaining momentum to spot emerging trends.

Campaign planning

Research hashtag popularity before launching branded hashtag campaigns.

Code Examples

Python
import requests

resp = requests.get(
    "https://api.creatorcrawl.com/v1/tiktok/hashtags/popular",
    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/hashtags/popular",
  { 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.