TikHub Complete (149 Endpoints)
Actions64
- Get single video data
- Get single video data V2
- Batch Get Video Information
- Batch Get Video Information V2
- Get single video data by sharing link
- Get information of specified user
- Get user repost video data
- Get user homepage video data
- Get user like video data
- Get single video comments data
- Get comment replies data of specified video
- Get comprehensive search results of specified keywords
- Get video search results of specified keywords
- Get user search results of specified keywords
- Get music search results of specified keywords
- Get hashtag search results of specified keywords
- Get live search results of specified keywords
- Get details of specified music
- Get video list of specified music
- Get details of specified hashtag
- Get video list of specified hashtag
- Get follower list of specified user
- Get following list of specified user
- Get data of specified live room
- Get live room ranking list
- Check if live room is online
- Batch check if live rooms are online
- Get share short link
- Get share QR code
- Get location search results
- Get product search results
- Get shopping creator information
- Get creator showcase product list
- Get Shop ID by Share Link
- Get Product ID by Share Link
- Get product detail data (will be deprecated, use fetch_product_detail_v2 instead)
- Get product detail data V2
- Get product detail data V3
- Get product detail data V4
- Get product review data
- Get shop home page list data
- Get shop home page data
- Get shop product recommend data
- Get shop product list data
- Get shop product list data V2
- Get shop information data
- Get shop product category data
- Get live daily rank data
- Get user music list data
- Get content translation data
- Get home feed(recommend) video data
- TikTok APP encryption algorithm
- Get live room product list data
- Get live room product list data V2
- Increase the number of plays of the work according to the video ID
- Encrypt or Decrypt TikTok APP login request body
- Generate TikTok share link, call TikTok APP, and jump to the specified video details page
- Generate TikTok share link, call TikTok APP, and jump to the specified user profile
- Generate TikTok share link, call TikTok APP, and jump to the specified keyword search result
- Generate TikTok share link, call TikTok APP, and send private messages to specified users
- Get video metrics
- Detect fake views in video
- Get comment keywords analysis
- Get creator info and milestones
Overview
This node, named "TikHub Complete," provides unified access to a wide range of social media data endpoints across four major platforms: TikTok, Instagram, YouTube, and X/Twitter. It supports 149 endpoints in total, including 64 for TikTok, 56 for Instagram, 16 for YouTube, and 13 for X/Twitter.
The specific operation "Get following list of specified user" under the TikTok platform allows users to retrieve the list of accounts that a particular TikTok user is following. This can be useful for social media analysts, marketers, or developers who want to analyze user connections, track influencer networks, or build applications that integrate TikTok social graph data.
Practical examples:
- A marketing analyst wants to gather the following lists of several TikTok influencers to understand their network reach.
- A developer builds an app that recommends new accounts based on the followings of a given user.
- A social media monitoring tool tracks changes in a user's following list over time.
Properties
| Name | Meaning |
|---|---|
| Platform | Select the social media platform to work with. Options: TikTok, Instagram, YouTube, X/Twitter. |
| 用户sec_user_id/User sec_user_id (sec_user_id) | The unique secure user ID of the TikTok user whose following list is to be retrieved. Required. |
| 数量/Number (count) | Number of following users to retrieve. Optional. Range: 1 to 1000. Default: 20. |
| 最小时间,用于翻页/Minimum time for paging (min_time) | Minimum timestamp used for pagination when retrieving the following list. Optional. |
| 翻页token/Page token (page_token) | Token used for pagination to fetch the next page of results. Optional. |
Output
The node outputs JSON data representing the list of users that the specified TikTok user is following. Each item in the output array corresponds to one followed user and contains relevant user information as returned by the TikHub API.
The output structure is dynamic depending on the API response but generally includes user identifiers, usernames, profile details, and possibly metadata related to the follow relationship.
No binary data output is indicated for this operation.
Dependencies
- Requires an API key credential for the TikHub service to authenticate requests.
- The node makes HTTP requests to the TikHub API endpoint at
https://api.tikhub.io. - No additional environment variables are explicitly required beyond the API credential.
Troubleshooting
Common issues:
- Invalid or missing API key credential will cause authentication failures.
- Providing an incorrect or non-existent
sec_user_idmay result in empty or error responses. - Pagination parameters (
min_time,page_token) must be correctly managed to retrieve subsequent pages; otherwise, only the first page of results is returned. - Exceeding the maximum allowed
countvalue (1000) will likely cause errors.
Error messages:
"Unknown operation"error indicates that the selected operation is not supported for the chosen platform.- Network or API errors from TikHub will be propagated; ensure network connectivity and valid credentials.
- If the node is set to continue on fail, errors for individual items will be included in the output JSON under an
errorfield.
Links and References
- TikHub API Documentation (official API docs for reference)
- n8n documentation on creating custom nodes