# TikTok Shop User Showcase API (https://www.socialcrawl.dev/platforms/tiktokshop/user-showcase) > Fetches products featured in a TikTok user's public showcase — the products a creator promotes on their profile. Each product includes title, price, images, and shop details. Region note: the upstream currently serves showcase lookups from the US only, so a showcase whose products are visible exclusively in another regional market (for example a GB creator selling GB-only listings) can return an empty list at 0 credits. TL;DR: `GET /v1/tiktokshop/user/showcase` 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 | | --- | --- | --- | | `handle` | yes | The handle of the user | | `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) | | `cursor` | no | The cursor to the next page of products | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/tiktokshop/user/showcase?handle=mrtiktokreviews" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I list a TikTok creator's showcase products? Send a GET request to /v1/tiktokshop/user/showcase with the handle parameter (no @ symbol). SocialCrawl returns a paginated list of products the creator promotes on their profile, each with title, price, images, and shop details. ### What is a TikTok user showcase? A showcase is the strip of affiliated products a TikTok creator pins to their profile, typically items they sell directly or earn commission on through TikTok Shop's affiliate program. ### What fields does each showcase product include? Each product returns product id, title, price, currency, primary image URL, images array, shop id, shop name, deep link to the product page, and the creator's handle, all in the unified post list schema. ### How do I paginate through a creator's full showcase? 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 creator currently showcases. ### Why does a creator's showcase come back empty? Some creators simply have no public showcase, but there is also a regional limit: showcase lookups are currently served from the US (an upstream limitation), so a creator whose showcase products are listed only in another regional market, such as a GB-only showcase, can return an empty list. Empty responses cost 0 credits. ### How much does the TikTok Showcase 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 creator showcase products with the SocialCrawl API - What does the SocialCrawl TikTok Showcase endpoint return?