Skip to main content
GET
/
v1
/
tiktok
/
search
/
hashtags
Search Hashtags
curl --request GET \
  --url https://scrapebadger.com/v1/tiktok/search/hashtags \
  --header 'x-api-key: <api-key>'
{
  "hashtags": [
    {
      "id": "229207",
      "title": "fyp",
      "description": "Videos on the For You feed.",
      "cover": "https://p16-sign.tiktokcdn-us.com/hashtag.jpeg",
      "video_count": 12000000,
      "view_count": 55000000000000,
      "is_commerce": false,
      "url": "https://www.tiktok.com/tag/fyp"
    }
  ],
  "pagination": {
    "has_more": true,
    "cursor": "30",
    "count": 30,
    "search_id": null
  },
  "region": "US"
}
Each request costs 5 credits. Failed requests are not charged.

Authorizations

x-api-key
string
header
required

Query Parameters

query
string
required

Search keyword.

region
string
default:US

Content region (ISO 3166-1 alpha-2). Routes the request through a proxy and signer for that locale.

count
integer
default:20

Maximum number of items to return (1-50).

Required range: 1 <= x <= 50
cursor
string

Pagination cursor — pass the pagination.cursor value from a prior response to fetch the next page. Omit for the first page. It is an opaque composite token.

Response

200 - application/json

Hashtag search results

region
string
required
hashtags
object[]
pagination
object

Cursor pagination metadata shared by all list endpoints.