Docs
Query TikTok Shop Reviews
User Interaction - Reviews API endpoint
Query Parameters
Key | Type | Description | Example | Required |
category | string | The data category for which the analysis is planned. As the scripting language is the same across various data categories, this value will help determine what data to fetch. | tiktok_shop_reviews | Yes |
condition_groups | object | Specifications for what data should be used for querying. The data can be: product_name, product_id, shop_name | condition_groups = [ { "operator": "and", "conditions": [ { "field": "product_id", "operator": "eq", "field_values": ["1234567810"] } ] } ] | No |
fields | string | Data fields to be returned. Interface will only return the fields listed here. | product_name,review_text,review_like_count,create_time,review_rating | No |
limit | int | The maximum number of records that will be returned. Test Stage The default value is 10. Execution Stage The default value is 100. | No |
Query Condition
Key | Type | Description | Required |
and | list<Condition> | The | No |
or | list<Condition> | The | No |
not | list<Condition> | The | No |
Response
Key | Type | Description | Example |
result | string | Data fields returned from the query. Interface will only return the fields listed here foe reviews given for products sold in the EU. | product_name,review_text,review_like_count,create_time,review_rating |