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 (formerly Twitter). It supports 149 endpoints in total, allowing users to retrieve detailed information such as videos, user profiles, analytics, posts, stories, reels, channels, tweets, timelines, and more.

A common use case for this node is aggregating social media data from multiple platforms within a single workflow. For example, marketers can gather video analytics from TikTok, post insights from Instagram, channel statistics from YouTube, and tweet details from X to create comprehensive reports or trigger automated actions based on social media activity.

Specifically, the "Get share short link" operation under the "Default" resource allows users to input a share URL (currently supported for TikTok) and retrieve its corresponding short link or related metadata.

Properties

Name Meaning
Platform Select the social media platform to work with. Options: TikTok, Instagram, YouTube, X/Twitter
分享链接/Share link The share URL to be processed (required for TikTok platform when using the shortlink operation)

Output

The node outputs an array of JSON objects representing the data returned by the selected API endpoint. Each item corresponds to one input item processed and contains the relevant response data under the json field.

  • The structure of the JSON output depends on the specific endpoint called.
  • If the operation returns multiple records, each record is output as a separate item.
  • No binary data output is indicated in the code.

Example output snippet (conceptual):

[
  {
    "json": {
      "shortLink": "https://vm.tiktok.com/short123",
      "originalUrl": "https://www.tiktok.com/@user/video/1234567890",
      "metadata": { ... }
    }
  }
]

Dependencies

  • Requires an API key credential for authenticating requests to the TikHub API service at https://api.tikhub.io.
  • The node uses internal helper functions to make HTTP requests to TikHub endpoints.
  • No additional external dependencies are required beyond the configured API credential.

Troubleshooting

  • Unknown operation error: If you select an operation that does not exist for the chosen platform, the node will throw an error indicating the unknown operation. Ensure the operation name matches one of the supported endpoints for the selected platform.
  • Missing required parameters: Some operations require specific parameters (e.g., the share link URL for the shortlink operation). Omitting these will cause errors or empty responses.
  • API authentication failures: Verify that the API key credential is correctly configured and has sufficient permissions.
  • Rate limits or API errors: The TikHub API may enforce rate limits or return errors if requests are malformed. Check the error messages returned in the output JSON for clues.

Links and References

Discussion