# SocialFetch TikTok Shop Product Reviews

> SocialFetch TikTok Shop Product Reviews is a paid API for AI agents from api.socialfetch.dev, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-14).

Lists buyer reviews for a TikTok Shop product by product ID or product URL, with optional pagination and region filtering.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/tiktok/products/reviews
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/socialfetch-tiktok-shop-product-reviews-79b31bd6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__7MgvIgjq074PJs0GYGKZ

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability socialfetch-tiktok-shop-product-reviews-79b31bd6
```

Example prompt: Can you pull the first page of buyer reviews for the TikTok Shop product with ID 1729430975898664992 in the US region?

## When to prefer this

Use this endpoint when you need to retrieve buyer reviews specifically from TikTok Shop product listings, either by product ID or product URL, with optional region and page filtering. Prefer this over general web scraping when you want structured, paginated review data from TikTok Shop without managing browser automation.

## Known failure modes

- Invalid or non-existent product ID returns empty results or an error
- Invalid region code returns a validation error
- Out-of-range page number returns empty results
- Missing both productId and url causes a request validation error
- Rate limiting or payment failure results in a 402 response
- Private or delisted products may return no reviews

## How this service works

List buyer reviews for a TikTok Shop product by product id.

## Output

A paginated list of buyer reviews for the specified TikTok Shop product, including review text, star ratings, reviewer details, and other review metadata returned from the TikTok Shop catalog for the given region.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "url": {
       "type": "string",
       "maxLength": 4096,
       "minLength": 1,
       "description": "Public TikTok Shop product detail page URL for the product whose reviews should be listed."
      },
      "page": {
       "type": "integer",
       "maximum": 9007199254740991,
       "minimum": 1,
       "description": "1-based review page number. Omit to request the first page."
      },
      "region": {
       "enum": [
        "US",
        "GB",
        "DE",
        "FR",
        "IT",
        "ID",
        "MY",
        "MX",
        "PH",
        "SG",
        "ES",
        "TH",
        "VN",
        "BR",
        "JP",
        "IE"
       ],
       "type": "string",
       "description": "Optional country or region code for the product review catalog. When omitted, the default catalog region applies."
      },
      "productId": {
       "type": "string",
       "minLength": 1,
       "description": "TikTok Shop product identifier. Provide this instead of `url` when you already know the product id."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/socialfetch-tiktok-shop-product-reviews-79b31bd6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.socialfetch.dev](https://www.zero.xyz/host/api.socialfetch.dev/llms.txt)
