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 64 TikTok endpoints, 56 Instagram endpoints, 16 YouTube endpoints, and 13 X/Twitter endpoints, enabling users to retrieve diverse data such as videos, user profiles, analytics, posts, stories, reels, tweets, channels, and more.
The node is particularly useful for social media analysts, marketers, content creators, and developers who want to automate the retrieval of social media data from multiple platforms within a single workflow. For example, one can use it to fetch a list of TikTok videos associated with a specific music ID or hashtag, gather Instagram reel data for a campaign, or collect YouTube channel statistics.
In the context of the specified Resource "Default" and Operation "Get video list of specified music" on TikTok, the node fetches a list of videos related to a given music ID or hashtag, supporting pagination through cursor and count parameters.
Properties
| Name | Meaning |
|---|---|
| Platform | Select the social media platform to work with. Options: TikTok, Instagram, YouTube, X/Twitter. |
| 音乐id/Music id | The music ID on TikTok to get the video list for. Required when platform is TikTok and operation is videolist. |
| 游标/Cursor | Pagination cursor to specify the starting point for fetching results. Optional, default is 20. Range: 1-1000. |
| 数量/Number | Number of videos to retrieve in one request. Optional, default is 20. Range: 1-1000. |
| 话题id/Hashtag id | Hashtag ID on TikTok to get the video list for. Required when platform is TikTok and operation is videolist. |
Note: Cursor and Number properties appear twice in the input JSON but represent the same concept; they are used for pagination and limiting the number of results respectively.
Output
The node outputs an array of JSON objects representing the retrieved data from the selected social media platform endpoint. For the "Get video list of specified music" operation on TikTok, the output JSON contains video metadata related to the specified music ID or hashtag.
Each item in the output corresponds to a single video entry with its associated details as returned by the TikHub API. The exact structure depends on the TikHub API response but typically includes fields like video ID, description, author info, stats, and URLs.
If the node encounters errors during execution and "Continue On Fail" is enabled, the output will include error objects paired with the corresponding input item index.
The node does not explicitly handle binary data output.
Dependencies
- Requires an API key credential for authenticating requests to the TikHub API service.
- The base URL for API requests is
https://api.tikhub.io. - No other external dependencies are required.
- The node uses internal helper functions to make HTTP requests to TikHub endpoints.
Troubleshooting
Common Issues:
- Invalid or missing API key credential will cause authentication failures.
- Providing incorrect or empty required parameters like music ID or hashtag ID will result in errors or empty responses.
- Exceeding allowed ranges for cursor or count parameters may cause API errors.
- Selecting an unsupported operation or platform combination will throw an "Unknown operation" error.
Error Messages:
"Unknown operation: <operation> for platform: <platform>": Indicates that the requested operation is not supported for the chosen platform. Verify the operation name and platform selection.- API request errors with messages from TikHub API: Check parameter validity and API key correctness.
- Network or timeout errors: Ensure stable internet connection and TikHub API availability.
Resolution Tips:
- Double-check all required parameters are provided and valid.
- Confirm the API key credential is correctly configured in n8n.
- Use smaller counts or adjust cursor values if pagination issues occur.
- Enable "Continue On Fail" to allow partial processing when some items fail.
Links and References
- TikHub API Documentation (official API base URL referenced)
- n8n Documentation on Creating Custom Nodes
- Social Media Platform APIs (for understanding underlying data structures):
- TikTok Developer Portal
- Instagram Graph API
- YouTube Data API
- X (Twitter) API
This summary is based solely on static analysis of the provided source code and property definitions.