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," provides access to a comprehensive set of social media data endpoints across four major platforms: TikTok, Instagram, YouTube, and X/Twitter. It supports 149 endpoints in total, allowing users to retrieve various types of data such as videos, user profiles, analytics, posts, stories, reels, tweets, channels, and product search results.
The specific operation "Get product search results" under the "Default" resource for the TikTok platform enables users to search for products on TikTok's shop data using keywords and various filtering options. This is useful for marketers, e-commerce analysts, or developers who want to programmatically gather product information from TikTok shops based on search criteria like price range, discounts, review ratings, and sorting preferences.
Practical examples:
- An e-commerce business can use this node to find trending products on TikTok with high customer ratings and discounts.
- A marketing analyst might extract product data filtered by keyword and price range to analyze competitive pricing.
- Developers can automate product discovery workflows integrated into larger social media monitoring systems.
Properties
| Name | Meaning |
|---|---|
| Platform | Select the social media platform to work with. Options: TikTok, Instagram, YouTube, X/Twitter. |
| 关键词/Keyword | The search keyword for product search on TikTok (required). |
| 游标/Cursor | Cursor for pagination, controls the starting point of the search results (default 20). |
| 数量/Number | Number of products to return in the search results (default 20). |
| 商品排序条件/Product sorting conditions | Numeric value representing how products should be sorted in the results. |
| 四星以上评价/Four-star or more reviews | Boolean flag to filter products with customer reviews of four stars or higher. |
| 有优惠/Having discount | Boolean flag to filter products that currently have discounts. |
| 最低价格/Minimum price | Minimum price filter for the product search (string format). |
| 最高价格/Maximum price | Maximum price filter for the product search (string format). |
Output
The node outputs an array of JSON objects representing the product search results retrieved from the TikTok shop data endpoint. Each item in the output corresponds to a product matching the search criteria, including details such as product name, price, discount status, customer reviews, and other relevant metadata provided by the API.
If the node encounters errors during execution and "Continue On Fail" is enabled, it outputs error messages paired with the corresponding input item index.
The node does not output binary data.
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 additional environment variables are explicitly required beyond the API authentication setup.
- The node depends on internal utility functions to make HTTP requests to the TikHub API.
Troubleshooting
Common issues:
- Invalid or missing API credentials will cause authentication failures.
- Providing unsupported or incorrect operation names or platform values will result in an "Unknown operation" error.
- Exceeding allowed parameter ranges (e.g., count or cursor outside 1-1000) may cause API request errors.
- Network connectivity issues can lead to request timeouts or failures.
Error messages:
"Unknown operation: <operation> for platform: <platform>": Indicates the specified operation is not supported for the chosen platform. Verify the operation and platform parameters.- API response errors typically include descriptive messages; ensure all required parameters are correctly set.
- If the node throws errors related to parameter parsing, check that numeric fields are within valid ranges and string fields are properly formatted.
Resolution tips:
- Double-check API credentials and permissions.
- Validate input parameters before running the node.
- Use the "Continue On Fail" option to handle partial failures gracefully.
Links and References
- TikHub API Documentation (official API reference)
- Social media platform developer documentation for TikTok, Instagram, YouTube, and X/Twitter for understanding data context.