Collect public TikTok Shop reviews from one product PDP URL, returning review text, ratings, reviewer details, images, SKU and purchase context as normalized records.

TikTok Shop Product Reviews API

Single product PDP URL
Public review text and ratings
SKU and purchase context
Region-aware collection
0.3 credits / result
Ready
Ready

Enter parameters and send a request. The task status and normalized results will appear here.

README

TikTok Shop Product Reviews

TikTok Shop product reviews are public customer feedback records with text, ratings, reviewer names, images, timestamps, SKU details, countries, and explicit purchase-status flags. These fields support product feedback analysis, variant and regional comparison, and evidence-aware review workflows.

Features

  • One product with regional scopeSubmit one supported public PDP URL with a market region and collect the unique reviews exposed for that product up to the requested limit.
  • Review content, rating, author, and mediaEach normalized record preserves exposed review text, numeric rating, reviewer identity, images, publication time, product URL, and collection time.
  • Product, SKU, country, and purchase contextReview records retain product and SKU identifiers, variant specifications, review country, and explicit verified-purchase or incentivized-review flags when supplied.

Parameters

ParametersRequiredDescription
urlRequiredRequired public TikTok Shop URL matching /shop/pdp/{numeric_id} or /shop/pdp/{slug}/{numeric_id}; one task accepts one product.
results_limitOptionalMaximum unique reviews to save across source pages; defaults to 100 and accepts integers from 20 through 2,000.
regionOptionalTikTok Shop market region; defaults to US, and public product or review availability in other accepted regions can vary.

How to Use

Submit one supported product URL, track the asynchronous task, and read normalized review records with cursor pagination.

  1. Prepare one supported TikTok Shop PDP url, a results_limit from 20 through 2,000, and the product market region.
  2. POST the request to /v1/tiktok-shop/product-reviews and save the returned task_id.
  3. Poll GET /v1/tasks/{task_id} until the task succeeds or returns a failure.
  4. Read data.results.items and request the returned next_cursor while has_more remains true.
curl -X POST "https://api.socq.ai/v1/tiktok-shop/product-reviews" \
  -H "Authorization: Bearer $SOCQ_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"https://www.tiktok.com/shop/pdp/example-product/1729587769570529799","results_limit":100,"region":"US"}'

# Poll GET /v1/tasks/{task_id}
# Read data.results.items and follow next_cursor while has_more is true

Best Use Cases

  • Product feedback analysis: Use review text, numeric ratings, timestamps, and product identity to examine the public feedback returned for one known product.
  • SKU and regional feedback comparison: Group records by SKU specification or review country, then compare their text and ratings without inferring values for missing fields.
  • Purchase-context and review-media inspection: Review customer-supplied images and segment records by explicit verified-purchase or incentivized-review flags when those values are present.

Pro Tips

  • Validate that the input is a full tiktok.com PDP URL with a numeric product ID before submission, because profile, video, shop, and other TikTok URLs are rejected.
  • Choose the region that matches the product market; a valid URL can still return no public reviews when the selected market does not expose the product or its review feed.
  • Set results_limit between 20 and 2,000 for collection coverage, then follow next_cursor until has_more is false to read every stored result page.
  • Treat absent review text, reviewer identity, SKU details, and purchase-status flags as unknown; a missing boolean is not false, and a rating-only record remains valid.

Use these APIs when you need a different type of public TikTok Shop data.

  • TikTok Shop Search APISearch public TikTok Shop products by keyword and market region with seller, price, media, rating, review, and sold-count fields.
  • TikTok Shop Products APICollect public products from one TikTok Shop store URL with seller, price, media, category, SKU, rating, review, and sold-count fields.
  • TikTok Shop Product APIRetrieve one public TikTok Shop product from a PDP URL with seller, price, media, category, SKU, rating, review, and sold-count fields.
  • TikTok Shop User Showcase APICollect public showcase products for one TikTok username with price, seller, media, rating, review, sold-count, and regional context.

TikTok Shop Product Reviews APIFAQ