Shop Product Reviews
curl --request GET \
--url https://scrapebadger.com/v1/tiktok/shop/products/{product_id}/reviews \
--header 'x-api-key: <api-key>'import requests
url = "https://scrapebadger.com/v1/tiktok/shop/products/{product_id}/reviews"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://scrapebadger.com/v1/tiktok/shop/products/{product_id}/reviews', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://scrapebadger.com/v1/tiktok/shop/products/{product_id}/reviews",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://scrapebadger.com/v1/tiktok/shop/products/{product_id}/reviews"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://scrapebadger.com/v1/tiktok/shop/products/{product_id}/reviews")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://scrapebadger.com/v1/tiktok/shop/products/{product_id}/reviews")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"reviews": [
{
"review_id": "7636473773830670093",
"rating": 2,
"text": "Es muy bueno, el magnesio para el dolor en el cuerpo",
"reviewer_name": "Ⓜ**3",
"created_utc": 1778005121,
"is_verified_purchase": true,
"is_incentivized": false,
"sku": "Default",
"images": [
"https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/9f460e5abeb840169cce1f0fea3849b0~tplv-fhlh96nyum-crop-webp:300:300.webp?dr=12190&t=555f072d&ps=933b5bde&shp=8dbd94bf&shcp=607f11de&idc=useast8&from=2378011839"
],
"created_at": "2026-05-05T18:18:41Z",
"country": "US"
},
{
"review_id": "7631572981256423181",
"rating": 5,
"text": "Pwodwi sa vèman bon! Li fasil pou itilize, li bon kalite, epi li bay bon rezilta. Mwen satisfè 100% epi mwen rekòmande li bay tout moun . Pa ezite eseye li!”",
"reviewer_name": "S**9",
"created_utc": 1776864066,
"is_verified_purchase": true,
"is_incentivized": false,
"sku": "Default",
"images": [
"https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/992f14ec8dc34793a32c124a71c3be32~tplv-fhlh96nyum-crop-webp:300:300.webp?dr=12190&t=555f072d&ps=933b5bde&shp=8dbd94bf&shcp=607f11de&idc=useast8&from=2378011839"
],
"created_at": "2026-04-22T13:21:06Z",
"country": "US"
}
],
"total": 6756,
"rating": 4.5,
"rating_breakdown": {
"1": 9849,
"2": 2682,
"3": 6537,
"4": 13628,
"5": 124464
},
"page": 1,
"has_more": true,
"product_id": "1729448464509734958",
"region": "US"
}Shop
Shop Product Reviews
Paginated TikTok Shop product reviews with the total and rating breakdown; sort by recommended or recent, filter by star rating, media or verified purchase.
GET
/
v1
/
tiktok
/
shop
/
products
/
{product_id}
/
reviews
Shop Product Reviews
curl --request GET \
--url https://scrapebadger.com/v1/tiktok/shop/products/{product_id}/reviews \
--header 'x-api-key: <api-key>'import requests
url = "https://scrapebadger.com/v1/tiktok/shop/products/{product_id}/reviews"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://scrapebadger.com/v1/tiktok/shop/products/{product_id}/reviews', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://scrapebadger.com/v1/tiktok/shop/products/{product_id}/reviews",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://scrapebadger.com/v1/tiktok/shop/products/{product_id}/reviews"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://scrapebadger.com/v1/tiktok/shop/products/{product_id}/reviews")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://scrapebadger.com/v1/tiktok/shop/products/{product_id}/reviews")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"reviews": [
{
"review_id": "7636473773830670093",
"rating": 2,
"text": "Es muy bueno, el magnesio para el dolor en el cuerpo",
"reviewer_name": "Ⓜ**3",
"created_utc": 1778005121,
"is_verified_purchase": true,
"is_incentivized": false,
"sku": "Default",
"images": [
"https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/9f460e5abeb840169cce1f0fea3849b0~tplv-fhlh96nyum-crop-webp:300:300.webp?dr=12190&t=555f072d&ps=933b5bde&shp=8dbd94bf&shcp=607f11de&idc=useast8&from=2378011839"
],
"created_at": "2026-05-05T18:18:41Z",
"country": "US"
},
{
"review_id": "7631572981256423181",
"rating": 5,
"text": "Pwodwi sa vèman bon! Li fasil pou itilize, li bon kalite, epi li bay bon rezilta. Mwen satisfè 100% epi mwen rekòmande li bay tout moun . Pa ezite eseye li!”",
"reviewer_name": "S**9",
"created_utc": 1776864066,
"is_verified_purchase": true,
"is_incentivized": false,
"sku": "Default",
"images": [
"https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/992f14ec8dc34793a32c124a71c3be32~tplv-fhlh96nyum-crop-webp:300:300.webp?dr=12190&t=555f072d&ps=933b5bde&shp=8dbd94bf&shcp=607f11de&idc=useast8&from=2378011839"
],
"created_at": "2026-04-22T13:21:06Z",
"country": "US"
}
],
"total": 6756,
"rating": 4.5,
"rating_breakdown": {
"1": 9849,
"2": 2682,
"3": 6537,
"4": 13628,
"5": 124464
},
"page": 1,
"has_more": true,
"product_id": "1729448464509734958",
"region": "US"
}page/count paginate (up to 50 per page); sort=recent for the newest; rating=1..5, with_media=true or verified=true narrow the set — total reflects the filter, rating_breakdown the whole product. US only.Markets —
region=US (default) serves everything; GB and ID (Tokopedia) serve categories, category products and product detail in GBP/IDR. SG, MY, PH, TH, VN, MX, BR and JP sit behind a puzzle our exits do not clear and return 400.Each request costs 5 credits. Failed requests are not charged.
Authorizations
Path Parameters
Query Parameters
Market — US only for this endpoint.
Required range:
x >= 1Required range:
1 <= x <= 50Available options:
recommended, recent Only this star rating.
Required range:
1 <= x <= 5Only reviews with photos/videos.
Only verified purchases.

