TikTok Shop Products
Fetch a public TikTok Shop store page and return normalized shop info plus any product cards exposed on the page.
Try on PlaygroundAuthentication
Send your Crawlkit API key as a Bearer token in the Authorization header.
Authorization: Bearer ck_your_api_keyRequest Parameters
Send these JSON body fields in your request payload.
| Name | Type | Description |
|---|---|---|
url | string | Public target URL. |
Example Request
Use direct HTTP requests against the public API base URL.
Example request
1const response = await fetch('https://api.crawlkit.sh/v1/crawl/tiktok/shop-products', {2 method: 'POST',3 headers: {4 'Authorization': 'Bearer YOUR_API_KEY',5 'Content-Type': 'application/json'6 },7 body: JSON.stringify({8 "url": "https://shop.tiktok.com/us/store/crocs/7493920001122334455",9 "options": {10 "timeout": 6000011 }12})13});14 15const { data } = await response.json();16console.log(data.shop.shopName, data.products.length);Response
Success (200 OK): Returns service-specific structured payload.
Success response (200 OK)
1{2 "success": true,3 "data": {4 "url": "https://shop.tiktok.com/us/store/crocs/7493920001122334455",5 "shop": {6 "sellerId": "7493920001122334455",7 "shopName": "Crocs",8 "description": "Official Crocs shop",9 "rating": 4.8,10 "reviewCount": 918,11 "followers": 142330,12 "productCount": 214,13 "logoUrl": "https://p16-oec-ttp.tiktokcdn-us.com/...",14 "url": "https://shop.tiktok.com/us/store/crocs/7493920001122334455"15 },16 "products": [17 {18 "productId": "1729744150346790056",19 "title": "Crocs Classic Clog",20 "url": "https://www.tiktok.com/shop/pdp/crocs-unisex-adult-classic-clog/1729744150346790056",21 "image": "https://p19-oec-ttp.tiktokcdn-us.com/...",22 "salePrice": "39.99",23 "originPrice": "49.99",24 "currency": "USD",25 "soldCount": 2314,26 "rating": 4.8,27 "reviewCount": 918,28 "sellerId": "7493920001122334455",29 "shopName": "Crocs"30 }31 ],32 "pagination": {33 "cursor": null,34 "hasMore": false35 },36 "timing": {37 "total": 389738 },39 "creditsUsed": 1,40 "creditsRemaining": 8441 }42}