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 (149 Endpoints)", 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 total endpoints distributed as follows: 64 for TikTok, 56 for Instagram, 16 for YouTube, and 13 for X/Twitter.
The node is designed to fetch various types of data such as videos, users, analytics, posts, stories, reels, channels, tweets, timelines, and more by selecting the platform and operation. For example, it can retrieve detailed video information from TikTok using a sharing link or get user timeline data from X/Twitter.
A practical use case is automating social media analytics workflows where you need to gather data from multiple platforms in one place without switching between different APIs. Another example is content monitoring or competitive analysis by fetching posts or videos programmatically.
Specifically, for the "Get single video data by sharing link" operation under the "Default" resource, the node fetches detailed metadata about a single video on TikTok by providing its share URL.
Properties
| Name | Meaning |
|---|---|
| Platform | Select the social media platform to work with. Options: TikTok, Instagram, YouTube, X/Twitter |
| 分享链接/Share link | The sharing URL of the TikTok video to retrieve data for. Required when Platform is TikTok and Operation is "shareurl". |
Output
- The output is a JSON array containing the data returned by the selected API endpoint.
- Each item corresponds to one input item processed.
- The JSON structure depends on the specific endpoint called but generally includes detailed metadata about the requested resource (e.g., video details, user info).
- If an error occurs and "Continue On Fail" is enabled, the output will include an object with an
errorfield describing the issue. - No binary data output is indicated in the code.
Dependencies
- Requires an API key credential for authenticating requests to the TikHub API service at
https://api.tikhub.io. - The node uses this external API to access social media data; thus, internet connectivity and valid credentials are mandatory.
- No other external dependencies or environment variables are required.
Troubleshooting
- Unknown operation error: If you select an operation that does not exist for the chosen platform, the node throws an error like
Unknown operation: <operation> for platform: <platform>. Ensure the operation name matches one of the supported operations for the selected platform. - Missing or invalid share link: For the "Get single video data by sharing link" operation, the share URL must be provided and valid. An empty or malformed URL may cause request failures.
- API authentication errors: If the API key credential is missing or invalid, requests will fail. Verify that the correct API key is configured in n8n credentials.
- Rate limits or API errors: Since the node relies on an external API, hitting rate limits or temporary service issues may cause errors. Check the API provider's status and consider adding retry logic if needed.
- Continue On Fail behavior: When enabled, the node outputs error messages per item instead of stopping execution, which helps in batch processing scenarios.
Links and References
- TikHub API Documentation (official API base URL referenced in the code)
- Social media platform developer documentation for TikTok, Instagram, YouTube, and X/Twitter for understanding underlying data structures and limitations.