Public Playground
Preview the endpoint before sending a live request
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Playground
Retrieve TikTok popular-trend hashtags API Playground
Returns trending hashtags from TikTok Creative Center. The service clamps `page` to 1-10, `limit` to at most 100, and defaults `period` to 7.
GETapiKey8 credits/requestpopulartrend.hashtagTrendResponseDocTikTok
Endpoint details
Returns trending hashtags from TikTok Creative Center. The service clamps `page` to 1-10, `limit` to at most 100, and defaults `period` to 7.
- Method
- GET
- Path
- /tiktok/popular-trend/hashtag
- Authentication
- apiKey
- Credit cost
- 8 credits/request
- Platform
- TikTok
- Parameters
- 7 documented fields
Request parameters
x-api-key:headerpage:querylimit:queryperiod:queryindustry_id:querycountry_code:queryfilter_by:query
Response schema fields
codedatadata.codedata.datadata.data.listdata.data.list[].country_infodata.data.list[].country_info.iddata.data.list[].country_info.labeldata.data.list[].country_info.valuedata.data.list[].creatorsdata.data.list[].creators[].avatar_urldata.data.list[].creators[].nick_name
Sample response summary
{
"code": 200,
"msg": "OK",
"data": {
"code": 0,
"msg": "OK",
"data": {
"list": [
{
"hashtag_id": "4777",
"hashtag_name": "prom",
"country_info": {
"id": "US",
"value": "United States",
"label": "US"
},
"industry_info": {
"id": 22000000000,
"value": "Apparel & Accessories",
"label": "label_22000000000"
},
"is_promoted": false,
"trend": [
{
"time": 1776729600,
"value": 1
}
],
"publish_cnt": 179872,
"video_views": 766182036,
"rank": 1,
"rank_diff": 0,
"rank_diff_type": 4
}
],
"pagination": {
"page": 1,
"size": 1,
"total": 100,
"has_more": true
}
}
}
}cURL example
curl "https://api.crawlora.net/api/v1/tiktok/popular-trend/hashtag" \
-H "x-api-key: <api-key>"