Unofficial TikTok Hashtag Search API

GET/api/v1/search_hashtags· paginated

Search hashtags (one page per call, cursor-paginated).

ParameterDescription
queryrequiredWhat to search for.
cursoroptionalPage cursor. Omit (or 0) for the first page; pass the next_cursor from the previous response.
formatoptionalOmit for raw challenge objects (default). clean for a trimmed subset (name, views, posts, description).

Returns

query, next_cursor, has_more, count, and a results array of hashtag/challenge objects — raw by default, trimmed with format=clean.

Example Request

https://dev.omar-thing.site/api/v1/search_hashtags?query=fifa&cursor=0&format=clean&key=YOUR_API_KEY

Example Response

{
  "data": {
    "count": 15,
    "has_more": true,
    "next_cursor": "15",
    "query": "fifa",
    "results": [
      {
        "description": "",
        "hashtag_id": "15...",
        "name": "fifa",
        "user_count": 10665795,
        "view_count": 256277531482
      },
      {
        "...": "more (format=clean shown)"
      }
    ]
  },
  "status": "success"
}
Sends a live request using your API key above.

More Search endpoints