Skip to main content
POST
/
api
/
tiktok
/
products
/
reviews
/tiktok/products/reviews
curl --request POST \
  --url https://api.anysite.io/api/tiktok/products/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@tik_tok_product_review",
    "rating": 123,
    "text": "<string>",
    "author_name": "<string>",
    "created_at": 123,
    "images": [],
    "is_verified_purchase": false,
    "is_incentivized": false,
    "sku": "<string>",
    "country": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
product
string
required

TikTok Shop product ID ('1731415240688571068') or full product URL.

Minimum string length: 1
Pattern: ^(?:https?://[^\s]+|\d{10,30})$
Examples:

"1731415240688571068"

"https://shop.tiktok.com/us/pdp/x/1731415240688571068"

count
integer
required

Max number of reviews to return

Required range: 1 <= x <= 3
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@tik_tok_product_review
rating
integer | null
text
string | null
author_name
string | null
created_at
integer | null
images
string[]
is_verified_purchase
boolean
default:false
is_incentivized
boolean
default:false
sku
string | null
country
string | null