TikTok Shop API

TikTok Shop Product reviews API

Fetch customer reviews for a TikTok Shop product by URL (rating, text, reviewer, country, and verified-purchase flag).

POST/v1/run/tiktok_shop.product_reviews
Uptime
100.00%
30d · 5 calls
Requests
5
30d · weekly, last 12 wks
Response
1.5s
median · 30d

Provider network

Providers ranked by traffic

Try it

Make your first request

Open in
Get a free key
Sample response
Free runs return only the first 3 results. Fund a key to get the full response.
{
  "data": {
    "hasMore": true,
    "rating": 4.6,
    "reviews": [
      {
        "country": "US",
        "createdUtc": 12.5,
        "id": "a1b2c3d4",
        "rating": 4.6,
        "reviewerName": "A short example description of this item.",
        "sku": "a1b2c3d4",
        "text": "A short example description of this item.",
        "verifiedPurchase": true
      }
    ],
    "totalReviews": 12500
  },
  "found": true
}
Response interface
interface TiktokShopProductReviewsResponse {
  data: {
    hasMore: boolean;
    rating: number;
    reviews: {
      country: string;
      createdUtc: number;
      id: string;
      rating: number;
      reviewerName: string;
      sku: string;
      text: string;
      verifiedPurchase: boolean;
    }[];
    totalReviews: number;
  } | null;
  found: boolean;
}

Full parameter and response reference - every field, type, and example for this endpoint.

Reference

Request, response, and price

Last verified 2026-09-16 · uptime and latency measured over 30d
POST /v1/run/tiktok_shop.product_reviews
curl -X POST https://api.getanyapi.com/v1/run/tiktok_shop.product_reviews \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"https://www.tiktok.com/shop/pdp/cat-nail-clipper-by-potaroma-adjustable-sizes-built-in-file-safe-for-kittens-cats/1731578642912612516"}'
FieldTypeExample value
Request body
urlstring"https://www.tiktok.com/shop/pdp/cat-nail-clipper-by-potaroma-adjustable-sizes-built-in-file-safe-for-kittens-cats/1731578642912612516"TikTok Shop product URL (e.g. https://www.tiktok.com/shop/pdp/.../1729385633899532161).
pageinteger1-based results page. Use with hasMore in the output to paginate.
regionstringTwo-letter country code of the product's shop region (e.g. US). Strongly recommended for correct results.
Response
dataobjectWrapper holding the reviews array plus totals, or null when nothing was found.
data.hasMorebooleanTrue when more reviews are available beyond this page.
data.ratingnumberOverall product score (1-5).
data.reviewsobject[]Product reviews. Populated whenever the provider has data for the entity.
data.reviews[].countrystringReviewer's country code.
data.reviews[].createdUtcnumberReview time as epoch milliseconds. Populated whenever the provider has data for the entity.
data.reviews[].idstringReview identifier. Populated whenever the provider has data for the entity.
data.reviews[].ratingnumberStar rating for this review (1-5).
data.reviews[].reviewerNamestringDisplay name of the reviewer. Populated whenever the provider has data for the entity.
data.reviews[].skustringVariant bought, e.g. "Color: Black". Populated whenever the provider has data for the entity.
data.reviews[].textstringReview text content. Populated whenever the provider has data for the entity.
data.reviews[].verifiedPurchasebooleanTrue when the review is from a verified purchase.
data.totalReviewsintegerTotal number of reviews for the product.
foundbooleanTrue when reviews were found; false when the lookup returned nothing.
Price
Price per requestUSD$0.0012
Price /1k reqUSD$1.20

FAQ

About the TikTok Shop Product reviews API

The AnyAPI TikTok Shop Product reviews API returns TikTok Shop product reviews data as normalized JSON from one POST call to /v1/run/tiktok_shop.product_reviews. Fetch customer reviews for a TikTok Shop product by URL (rating, text, reviewer, country, and verified-purchase flag). AnyAPI routes each request across 2 sources and falls back automatically when one fails. It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 100.0% of TikTok Shop product reviews calls through AnyAPI succeeded, with a median response time of 1.5 seconds across 5 measured calls.

It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum. You fund one USD wallet, each call draws it down, and a failed request costs $0.

Fetch customer reviews for a TikTok Shop product by URL (rating, text, reviewer, country, and verified-purchase flag). The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.

Over the last 30 days, 100.0% of TikTok Shop product reviews calls through AnyAPI succeeded, with a median response time of 1.5 seconds across 5 measured calls. These are AnyAPI's own measurements of traffic through the gateway, recomputed continuously, not a published service-level target.