TikHub Complete (149 Endpoints) icon

TikHub Complete (149 Endpoints)

Access ALL 149 TikHub social media data endpoints for TikTok (64), Instagram (56), YouTube (16), and X/Twitter (13)

Actions64

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.
  • 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.

Discussion