# TikTok Shop Products API (https://www.socialcrawl.dev/platforms/tiktokshop/products) > Returns products from a TikTok Shop page — title, cover images, URL, price info, sold count, review count, and rating. Sort by best-selling (`sort_by=top`) or newest (`sort_by=new_releases`); filter by `region`. Pagination via the upstream `cursor` is not currently exposed — only page 1 is returned. TL;DR: `GET /v1/tiktokshop/products` 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` | yes | Full URL of the TikTok Shop page | | `sort_by` | no | Sort products by best-selling (`top`) or newest (`new_releases`). Defaults to `top`. (top \| new_releases) | | `region` | no | Region to get shop products from. Defaults to US if not provided. (US \| GB \| DE \| FR \| IT \| ID \| MY \| MX \| PH \| SG \| ES \| TH \| VN \| BR \| JP \| IE) | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/tiktokshop/products?url=https%3A%2F%2Fwww.tiktok.com%2Fshop%2Fstore%2Fgoli-nutrition%2F7495794203056835079" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I list products from a TikTok Shop with an API? Send a GET request to /v1/tiktok/shop/products with the shop URL in the url parameter. SocialCrawl returns a paginated list of products with names, prices, ratings, review counts, and image URLs. ### What fields does each TikTok Shop product include? Each product returns product id, title, price, currency, rating, review count, sold count, primary image URL, and a deep link to the full product page — all in the unified post list schema. ### How do I paginate through an entire TikTok Shop catalog? Read the cursor field from the response and pass it as the cursor parameter on your next request. Repeat until cursor is empty to collect every product the shop currently lists. ### Which TikTok Shop regions does this endpoint support? 16 regions including US, GB, DE, FR, IT, ID, MY, MX, PH, SG, ES, TH, VN, BR, JP, and IE. Pass the region parameter with the 2-letter ISO code — default is US when region is omitted. ### How much does the TikTok Shop Products API cost? Each request costs 1 credit on the standard tier regardless of how many products 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 products with the SocialCrawl API - Which regions does the SocialCrawl TikTok Shop API support?