Actions7
- Search Actions
- User Profile Actions
- Photo Post Actions
- Post Status Actions
- Video Post Actions
Overview
This node performs a search for hashtags on TikTok based on a user-provided query string. It supports pagination through a cursor and allows limiting the number of results returned. This is useful for scenarios where users want to find trending or specific hashtags on TikTok for content discovery, marketing analysis, or social media monitoring.
Use Case Examples
- Searching for popular hashtags related to a specific topic to analyze trends.
- Finding hashtags to use in TikTok posts to increase visibility.
Properties
| Name | Meaning |
|---|---|
| Query | The text string to search for hashtags on TikTok. This is a required input to specify what hashtag to look for. |
| Cursor | A number used for pagination to fetch subsequent pages of search results. Defaults to 0 for the first page. |
| Limit | The maximum number of hashtag results to return from the search. Must be at least 1, defaulting to 50. |
Output
JSON
hashtags- An array of hashtag objects returned from the search query, containing details about each hashtag.cursor- The cursor value for pagination to retrieve the next set of results.
Dependencies
- Requires TikTok API access with appropriate authentication credentials.
Troubleshooting
- Ensure the query string is not empty as it is required for the search operation.
- Check API rate limits and authentication credentials if the node fails to fetch data.
- Verify that the cursor value is correctly managed for pagination to avoid missing or duplicate results.
Links
- TikTok API Documentation - Search Hashtags - Official TikTok API documentation for the hashtag search endpoint, detailing parameters and response structure.