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 a unified interface to access 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.
This node is beneficial when you want to integrate multiple social media data sources into your workflows without managing separate nodes or API calls for each platform. For example, you can fetch detailed product information from TikTok shops, retrieve user analytics from Instagram, get video details from YouTube, or pull tweets and timelines from X/Twitter — all within a single node.
Practical examples:
- Fetching detailed product data from TikTok shops by providing the product ID and region.
- Retrieving Instagram post or story data for marketing analysis.
- Accessing YouTube channel statistics or video metadata.
- Pulling recent tweets or user timeline data from X/Twitter.
Properties
| Name | Meaning |
|---|---|
| Platform | Select the social media platform to work with. Options: TikTok (64 endpoints), Instagram (56 endpoints), YouTube (16 endpoints), X/Twitter (13 endpoints). |
| 商品id/Product id | The product ID for TikTok platform when using the "Get product detail data V3" operation. Required for fetching product details. |
| 商品的国家/地区代码/ Country/region code of the product | Optional country or region code of the product for TikTok platform in the product detail operation. |
Note: The properties product_id and region are shown only when the platform is TikTok and the operation is "detail" (Get product detail data V3).
Output
The node outputs an array of JSON objects representing the data retrieved from the selected social media platform endpoint. Each item corresponds to one input item processed.
- The
jsonfield contains the structured response data from the API call, typically including detailed information such as product details, user info, posts, videos, or tweets depending on the operation. - If the API returns binary data (not explicitly shown in this code), it would be included accordingly, but this node primarily handles JSON responses.
Errors encountered during execution for individual items are returned as JSON objects with an error field describing the issue, allowing partial success if "Continue On Fail" is enabled.
Dependencies
- Requires an API key credential for authenticating requests to the TikHub API service.
- The node makes HTTP requests to
https://api.tikhub.io. - No other external dependencies are required beyond standard n8n workflow environment.
Troubleshooting
- Unknown operation error: If an invalid or unsupported operation name is provided, the node throws an error indicating the unknown operation for the selected platform. Ensure the operation parameter matches one of the supported operations.
- Missing required parameters: For example, the product ID is required for the TikTok product detail operation. Omitting required fields will cause the API request to fail.
- API request failures: Network issues, invalid credentials, or rate limits may cause errors. Check that the API key credential is valid and has sufficient permissions.
- Partial failures: When processing multiple input items, some may fail while others succeed. Enable "Continue On Fail" to handle such cases gracefully.
- Parameter retrieval errors: The node attempts to gather many possible parameters dynamically; if parameters are missing or incorrectly named, the request may not behave as expected.
Links and References
- TikHub API Documentation (official API base URL)
- Social media platform developer documentation for TikTok, Instagram, YouTube, and X/Twitter for understanding data structures and endpoints.