TikTok Product
Fetch a public TikTok Shop product page and return normalized product, shop, video, and related product data.
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/product', {2 method: 'POST',3 headers: {4 'Authorization': 'Bearer YOUR_API_KEY',5 'Content-Type': 'application/json'6 },7 body: JSON.stringify({8 "url": "https://www.tiktok.com/shop/pdp/crocs-unisex-adult-classic-clog/1729744150346790056",9 "options": {10 "timeout": 6000011 }12})13});14 15const { data } = await response.json();16console.log(data.product.title, data.shop?.shopName);Response
Success (200 OK): Returns service-specific structured payload.
Success response (200 OK)
1{2 "success": true,3 "data": {4 "url": "https://www.tiktok.com/shop/pdp/crocs-unisex-adult-classic-clog/1729744150346790056",5 "product": {6 "productId": "1729744150346790056",7 "title": "Crocs Classic Clog",8 "url": "https://www.tiktok.com/shop/pdp/crocs-unisex-adult-classic-clog/1729744150346790056",9 "image": "https://p19-oec-ttp.tiktokcdn-us.com/...",10 "salePrice": "39.99",11 "originPrice": "49.99",12 "currency": "USD",13 "soldCount": 2314,14 "rating": 4.8,15 "reviewCount": 918,16 "sellerId": "7493920001122334455",17 "shopName": "Crocs"18 },19 "shop": {20 "sellerId": "7493920001122334455",21 "shopName": "Crocs",22 "description": "Official Crocs shop",23 "rating": 4.8,24 "reviewCount": 918,25 "followers": 142330,26 "productCount": 214,27 "logoUrl": "https://p16-oec-ttp.tiktokcdn-us.com/...",28 "url": "https://shop.tiktok.com/us/store/crocs/7493920001122334455"29 },30 "videos": [],31 "relatedProducts": [],32 "timing": {33 "total": 413234 },35 "creditsUsed": 1,36 "creditsRemaining": 8637 }38}