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 follower list of specified user" under the "Default" resource allows users to retrieve the list of followers for a given user on the selected platform. This is particularly useful for social media analysts, marketers, or developers who want to gather follower data for audience insights, engagement analysis, or integration into other workflows.
Practical examples:
- A marketer wants to analyze the follower base of a TikTok influencer by fetching their follower list.
- A developer builds a dashboard that shows Instagram follower growth over time by periodically retrieving follower lists.
- A social media manager monitors new followers on an X/Twitter account to engage with them promptly.
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 user identifier (sec_user_id) for the TikTok user whose follower list is requested. Required for TikTok platform. |
| 数量/Number (count) | Number of followers to retrieve. Optional; defaults to 20. Minimum 1, maximum 1000. |
| 最小时间,用于翻页/Minimum time for paging (min_time) | Minimum timestamp used for pagination when fetching followers. Optional. |
| 翻页token/Page token (page_token) | Token used to fetch the next page of results in paginated follower lists. Optional. |
Note: The last four properties are specific to the TikTok platform and the "followerlist" operation.
Output
The node outputs an array of JSON objects representing the follower data retrieved from the selected platform's API. Each item corresponds to one follower's information as returned by the underlying API endpoint.
- The output JSON structure depends on the platform and the specific endpoint but generally includes follower identifiers, usernames, profile details, and possibly metadata like follow timestamps.
- If the node encounters errors during execution and "Continue On Fail" is enabled, it outputs error messages paired with the corresponding input item.
- The node does not output binary data.
Dependencies
- Requires an API key credential for the TikHub service, which aggregates multiple social media APIs.
- The node makes HTTP requests to
https://api.tikhub.io. - No additional environment variables are required beyond the configured API authentication.
- The node depends on internal utility functions to handle API requests and parameter extraction.
Troubleshooting
Common issues:
- Providing invalid or missing user identifiers (
sec_user_id) will cause the API request to fail. - Pagination tokens (
page_token) must be correctly managed to retrieve subsequent pages; incorrect tokens may result in empty or error responses. - Exceeding the allowed count limits (more than 1000) will likely cause validation errors.
- Network or authentication failures with the TikHub API can interrupt data retrieval.
- Providing invalid or missing user identifiers (
Error messages:
"Unknown operation: followerlist for platform: tiktok"indicates a mismatch or unsupported operation/platform combination.- API errors returned from TikHub are surfaced as error messages in the node output if "Continue On Fail" is enabled.
Resolutions:
- Verify all required parameters are provided and valid.
- Use correct pagination tokens as returned by previous calls.
- Ensure the API key credential is valid and has sufficient permissions.
- Check network connectivity and TikHub service status.
Links and References
- TikHub API Documentation (for detailed endpoint info)
- Social media platform official API docs (TikTok, Instagram, YouTube, X/Twitter) for understanding data fields and rate limits.