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
The node "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 detailed information such as video data, user profiles, analytics, posts, stories, reels, tweets, channels, and search results.
This node is beneficial for scenarios where comprehensive social media data aggregation is needed from multiple platforms within a single workflow. For example, marketers can use it to batch fetch video statistics from TikTok and YouTube, social engagement metrics from Instagram posts, or tweet details from X/Twitter, facilitating cross-platform analysis and reporting.
Practical examples include:
- Batch retrieving video information from TikTok to analyze trending content.
- Gathering Instagram reel and story data for influencer marketing campaigns.
- Fetching YouTube channel and video metadata for content performance tracking.
- Collecting tweets and user timeline data from X/Twitter for sentiment analysis.
Properties
| Name | Meaning |
|---|---|
| Platform | Select the social media platform to work with. Options: |
| - TikTok (64 endpoints): Access TikTok video, user, analytics, and shop data | |
| - Instagram (56 endpoints): Access Instagram post, user, story, and reel data | |
| - YouTube (16 endpoints): Access YouTube video, channel, and search data | |
| Operation | The specific operation to perform on the selected platform (not listed here but dynamically set) |
| Other parameters | Various input parameters depending on the operation, including identifiers like video_id, username, tweet_id, channel_id, search_query, pagination tokens, counts, etc. These are used to specify which data to retrieve and how to paginate results. |
Note: The node dynamically accepts many other parameters relevant to the chosen operation and platform, such as video IDs, user IDs, usernames, search queries, pagination tokens, and limits. These parameters are automatically assigned to either query parameters (for GET requests) or request body (for other HTTP methods).
Output
The node outputs an array of JSON objects representing the data retrieved from the selected social media platform's API endpoint. Each item corresponds to one piece of data returned by the API, such as video details, user profiles, tweets, or search results.
If the API response contains a data field, that is extracted and converted into the output JSON array; otherwise, the entire response is used.
The node does not explicitly handle binary data output.
Dependencies
- Requires an API key credential for authenticating with the TikHub API service.
- The base URL for all requests is
https://api.tikhub.io. - The node uses internal helper functions to make HTTP requests to TikHub endpoints.
- No additional external dependencies beyond the TikHub API and n8n core modules.
Troubleshooting
- Unknown operation error: If the selected operation is not recognized for the chosen platform, the node throws an error indicating the unknown operation. Ensure the operation name matches one of the supported endpoints for the platform.
- Parameter errors: Missing or invalid parameters required by the API endpoint may cause request failures. Verify that all necessary identifiers (e.g., video_id, username) are provided and correctly formatted.
- API authentication issues: Failure to authenticate with the TikHub API due to missing or invalid API credentials will result in errors. Confirm that the API key credential is configured properly in n8n.
- Rate limiting or quota exceeded: The TikHub API may enforce rate limits. If requests fail due to rate limiting, consider adding delays or reducing batch sizes.
- Continue on Fail: If enabled, the node will continue processing subsequent items even if some fail, returning error messages in the output JSON for failed items.
Links and References
- TikHub API Documentation (official API docs for available endpoints)
- n8n Documentation (general guidance on creating and using custom nodes)