TikTok Shop Product Reviews API
Scrape TikTok Shop Product Reviews data with one API call. Returns reviews for a TikTok Shop product. Each review includes rating, text, author, buyer country, verified-purchase and incentivised-review flags, the purchased SKU, and a timestamp. Pages 10 reviews at a time through the standard `cursor` contract; `data.total` carries the product's full review count. Identify the product by `url` or by `product_id`.
Last updated September 2026Maintained by the SocialCrawl team
Returns reviews for a TikTok Shop product, each with a star rating, review text, author, and timestamp.
Use it to read what buyers actually said, since product gives only the rating and review count, and page through the whole review corpus with the cursor.
Searching 65 platforms in parallel
What can you do with the Product Reviews API?
The Product Reviews endpoint gives you structured TikTok Shop data with computed fields in a single request. No scraping infrastructure to build or maintain.
Example Request
curl -H "x-api-key: YOUR_API_KEY" \
"https://www.socialcrawl.dev/v1/tiktokshop/product/reviews?url=https%3A%2F%2Fwww.tiktok.com%2Fshop%2Fpdp%2Fcat-nail-clipper-by-potaroma-adjustable-sizes-built-in-file-safe-for-kittens-cats%2F1731578642912612516"import requests
response = requests.get(
"https://www.socialcrawl.dev/v1/tiktokshop/product/reviews",
params={
'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"},
)
data = response.json()const response = await fetch(
"https://www.socialcrawl.dev/v1/tiktokshop/product/reviews?url=https%3A%2F%2Fwww.tiktok.com%2Fshop%2Fpdp%2Fcat-nail-clipper-by-potaroma-adjustable-sizes-built-in-file-safe-for-kittens-cats%2F1731578642912612516",
{
headers: { "x-api-key": "YOUR_API_KEY" },
},
);
const data = await response.json();Parameters
| Parameter | Required | Description |
|---|---|---|
| url | No | Full URL of the TikTok Shop product page. Provide this or `product_id`. |
| product_id | No | The ID of the product (required if url is not provided) |
| region | No | ISO 3166-1 alpha-2 region for the product (e.g. `US`). Important when the product is regionally scoped. (US | GB | DE | FR | IT | ID | MY | MX | PH | SG | ES | TH | VN | BR | JP | IE) |
| page | No | Page number to retrieve, 10 reviews per page. Prefer passing back `pagination.next_cursor`, which carries the same position and stays correct if the underlying paging mechanism changes. |
What does the TikTok Shop Product Reviews API return?
Every response follows one unified schema. Here is a real, unmodified response body, so you can see the exact fields you get back before spending a credit.
Example response
{
"success": true,
"platform": "tiktokshop",
"endpoint": "/v1/tiktokshop/product/reviews",
"data": {
"items": [
{
"review": {
"id": "7609467006076651278",
"entity_id": "1731578642912612516",
"url": null,
"title": null,
"text": "I just got mine and it works great .I have two male cats and they let me cut there nails without any fuss .as it makes no noise and cuts clean in one shot. And collects clippings as you go best one of all I have tried .and I have tried several different ones over time .but very satisfied with .",
"rating": {
"value": 5,
"max": 5
},
"author": {
"name": "Maria ramos345",
"avatar_url": "https://p19-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/7354525238464118826~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=76904e09&x-expires=1788908400&x-signature=vvPah6HBapJM0eGZDhSsmceKTRo%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5",
"url": null,
"location": "US",
"reviews_count": null
},
"helpful_votes": null,
"verified": true,
"source": null,
"language": null,
"original_language": null,
"translated": null,
"images": [],
"responses": null,
"published_at": "2026-02-21T23:38:43.706Z",
"ext": {
"tiktokshop": {
"reviewer_id": "7100577664064439342",
"is_incentivized_review": false,
"sku_specification": "Item: Default"
}
}
}
},
{
"review": {
"id": "7629814466944173837",
"entity_id": "1731578642912612516",
"url": null,
"title": null,
"text": "Amazing made the nail clipping for my cats really easy and thanks to the little measurements. I don’t have to worry about accidentally cutting them too far. I don’t use a nail file so I don’t know if it would work but the nail clipper itself is amazing.",
"rating": {
"value": 5,
"max": 5
},
"author": {
"name": "⋆˙✮star✮⋆˙",
"avatar_url": "https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/57ee0c2fa8003c574a88b8f2b5411309~tplv-tiktokx-cropcenter:100:100.jpg?dr=9640&refresh_token=65ecbb54&x-expires=1788908400&x-signature=1tsd9oUaeCPSj5kdmjOpqtixPV4%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=5f8d3399&idc=useast5",
"url": null,
"location": "US",
"reviews_count": null
},
"helpful_votes": null,
"verified": true,
"source": null,
"language": null,
"original_language": null,
"translated": null,
"images": [],
"responses": null,
"published_at": "2026-04-17T19:37:03.661Z",
"ext": {
"tiktokshop": {
"reviewer_id": "6782724383544476677",
"is_incentivized_review": false,
"sku_specification": "Item: Default"
}
}
}
}
],
"total": 1115,
"dropped": 0
},
"credits_used": 1,
"request_id": "req_example000000",
"cached": false,
"pagination": {
"next_cursor": "sc.eyJ2IjoyLCJjIjoiMiIsImUiOiJ0aWt0b2tzaG9wL3Byb2R1Y3QvcmV2aWV3cyIsInAiOiJwYWdlIn0",
"has_more": true,
"page_size": 10
},
"credits_remaining": 9999
}Live sample illustrating the unified response shape. Field values reflect the record you query.
How does the TikTok Shop Product Reviews API work?
Send a GET request with your API key and get back clean, structured JSON in our unified schema. Supported computed fields are populated when the source provides the required inputs.
Method
GET
Response
JSON
How do you scrape social media data in seconds?
The fastest social media scraping API for developers. Scrape profiles, posts, comments, and analytics from 65 platforms covering 10B+ monthly active users.
One schema, every platform
Query 65 platforms with identical response structures. Write your integration once.
Computed fields, not just scraped
When an endpoint supports these metrics and the source provides the required inputs, the normalized record includes engagement_rate, estimated_reach, content_category, and language. Ready to use.
See your data before you code
Visual Data Explorer. Paste any URL, get rich result cards, sortable tables, CSV export.
import requests
response = requests.get(
'https://www.socialcrawl.dev/v1/tiktok/profile',
params={'handle': 'charlidamelio'},
headers={'x-api-key': 'sc_YOUR_API_KEY'}
)
data = response.json(){
"success": true,
"platform": "tiktok",
"data": {
"author": {
"username": "charlidamelio",
"followers": 152400000
},
"engagement": {
"likes": 12400000000,
"engagement_rate": 0.087
},
"metadata": {
"language": "en",
"content_category": "lifestyle"
}
}
}Have a question? We got answers
Find answers to frequently asked questions about SocialCrawl's API, pricing, and capabilities.
Contact usHow do I list TikTok Shop product reviews with an API?
Can I use a product_id instead of a URL?
What fields does each review include?
How do I get all reviews for a product?
How much does the TikTok Shop Reviews API cost?
Ask AI about SocialCrawl
Ready to scrape TikTok Shop Product Reviews data?
Get your API key and start pulling TikTok Shop data in under 60 seconds.
