Get buyer reviews for a TikTok Shop product.
Endpoint
/v1/tiktok/products/reviews
Query
Public TikTok Shop product detail page URL for the product whose reviews should be listed.
TikTok Shop product identifier. Provide this instead of `url` when you already know the product id.
Optional country or region code for the product review catalog. When omitted, the default catalog region applies.
1-based review page number. Omit to request the first page.
const response = await fetch( "https://api.socialfetch.dev/v1/tiktok/products/reviews?url=https://www.tiktok.com/shop/pdp/cat-nail-clipper-by-potaroma-adjustable-sizes-built-in-file-safe-for-kittens-cats/1731578642912612516", { headers: { "x-api-key": "YOUR_API_KEY", } } ); const data = await response.json(); console.log(data);