# TikTok Shop Product API (https://www.socialcrawl.dev/platforms/tiktokshop/product) > Returns detailed information about a TikTok Shop product including price, rating, review count, seller info, and images. Region note: the upstream currently serves product lookups from the US only, so listings visible exclusively in other regional markets (for example a GB-only listing) resolve as 404. Regional coverage is available on tiktokshop/search, tiktokshop/products, and tiktokshop/product/reviews. TL;DR: `GET /v1/tiktokshop/product` 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 product page | | `region` | no | Region the lookup is served from. Currently US only (an upstream limitation; other regions are rejected before billing). Support for more regions is planned upstream but has no date. (US) | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/tiktokshop/product?url=https%3A%2F%2Fwww.tiktok.com%2Fshop%2Fpdp%2Fgoli-ashwagandha-gummies-with-vitamin-d-ksm-66-vegan-non-gmo%2F1729587769570529799" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I get TikTok Shop product details with an API? Send a GET request to /v1/tiktokshop/product with the product URL in the url parameter. SocialCrawl returns the product's price, rating, review count, seller info, images, and description in a unified schema. ### What fields does the TikTok Shop Product endpoint return? Each product returns product id, title, price, currency, rating, review count, sold count, images array, seller name and id, shipping info, and product description, all in the unified Post schema. ### How do I access TikTok Shop products in a different country? Product detail lookups are currently served from the US only, an upstream limitation. Passing any other region code (including GB) returns a clear 400 before billing, and a listing sold only in a non-US market resolves as 404. To work with other regional markets, use tiktokshop/search or tiktokshop/products with the region parameter, and tiktokshop/product/reviews for regional review data by product_id. ### Can I get product reviews from the same endpoint? Not directly. Use /v1/tiktokshop/product/reviews with the same product URL to get paginated reviews. That endpoint returns individual review text, rating, author, and timestamp. ### How much does the TikTok Shop Product API cost? Each request costs 1 credit on the standard tier. New accounts get 100 free credits with no credit card required, so you can pull around 100 products before paying anything. 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 get TikTok Shop product details with the SocialCrawl API - What does the SocialCrawl TikTok Shop Product endpoint return?