# TikTok Shop Product Reviews API (https://www.socialcrawl.dev/platforms/tiktokshop/product-reviews) > Returns reviews for a TikTok Shop product. Each review includes rating, text, author, and timestamp. Upstream pagination is not currently supported — the `page` parameter doesn't round-trip — so only page 1 is returned. TL;DR: `GET /v1/tiktokshop/product/reviews` costs 1 credit per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `url` | no | Full URL of the TikTok Shop product page | | `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. | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/tiktokshop/product/reviews" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I list TikTok Shop product reviews with an API? Send a GET request to /v1/tiktok/shop/product/reviews with either the product URL or product_id. SocialCrawl returns a paginated list of reviews with rating, review text, author name, and creation timestamp. ### Can I use a product_id instead of a URL? Yes. The endpoint requires exactly one of url or product_id. If you already have the product id from a previous response, passing product_id skips URL parsing and is slightly faster. ### What fields does each review include? Each review returns review id, rating (1-5 stars), review text, author display name, author avatar URL, creation timestamp, and an array of attached images if the reviewer uploaded any. ### How do I get all reviews for a product? Pass page=1 for the first page, then increment page (2, 3, 4...) on each subsequent request. Continue until the response returns an empty reviews array — you then have every public review for the product. ### How much does the TikTok Shop Reviews API cost? Each request costs 1 credit on the standard tier regardless of how many reviews are returned in the page. New accounts get 100 free credits with no credit card required. See the full TikTok Shop API: https://www.socialcrawl.dev/platforms/tiktokshop ## Pricing - Standard endpoints: 1 credit per call - Advanced endpoints: 5 credits per call - Premium endpoints: 10 credits per call - 100 free credits on signup, no credit card required. Cached responses cost 0 credits. Credit packs never expire. - Full pricing: https://www.socialcrawl.dev/pricing ## Explore with AI Questions this API answers, phrased for an AI assistant: - How to list TikTok Shop product reviews with the SocialCrawl API - What does the SocialCrawl TikTok Shop Reviews endpoint return?