Skip to main content
GET
/
api
/
trending
/
hashtag
Get Trending Hashtag
curl --request GET \
  --url https://tiktok-api23.p.rapidapi.com/api/trending/hashtag \
  --header 'x-rapidapi-key: <api-key>'
{
  "data": {
    "pagination": {
      "has_more": true,
      "page": 1,
      "size": 20,
      "total_count": 500
    },
    "list": [
      {
        "hashtag_id": "7415820094837948446",
        "hashtag_name": "tiktokshopholidayhaul",
        "country_info": {
          "id": "US",
          "value": "United States",
          "label": "US"
        },
        "industry_info": {
          "id": 22000000000,
          "value": "Apparel & Accessories",
          "label": "label_22000000000"
        },
        "is_promoted": false,
        "trend": [
          {
            "time": 1763251200,
            "value": 0.21
          }
        ],
        "publish_cnt": 1083553,
        "video_views": 2049831890,
        "rank": 1,
        "rank_diff": 0,
        "rank_diff_type": 2
      }
    ]
  }
}

Authorizations

x-rapidapi-key
string
header
required

Query Parameters

page
integer
default:1

Page

Example:

1

limit
integer
default:20

Number of items per page (maximum is 20)

Required range: x <= 20
Example:

20

period
enum<number>
default:7
Period in days:
- 7: Last 7 days
- 30: Last 30 days
- 120: Last 120 days
Available options:
7,
30,
120
Example:

7

country
string
default:US

Country code. Head here for a full list of supported countries

Example:

"US"

sort_by
string
default:popular

Sort by

Example:

"popular"

industry_id
string

Head to here for a full list of Industry code. You can combine multiple industries by using a comma. For example: 22102000000,22101000000

Response

Success

data
object