Appearance
User Showcase
GET /v1/tiktok/user/showcase
Fetches products featured in a TikTok user's public showcase , the products a creator promotes on their profile. Returns an array of product objects each with title, price, images, and shop details. Use POST request if pagination is cutting off too early. Just send the query params in the body.
Authentication
All requests require the x-api-key header. Get your key at scrapecreators.com.
Query Parameters
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
handle | string | yes | The handle of the user | mrtiktokreviews |
region | string | no | Region to put the proxy in | US |
cursor | string | no | The cursor to the next page of products | 21 |
Example Request
curl
bash
curl 'https://api.scrapecreators.com/v1/tiktok/user/showcase?handle=mrtiktokreviews' \
-H 'x-api-key: $SCRAPECREATORS_API_KEY'Node / TypeScript
js
const params = new URLSearchParams({ handle: 'mrtiktokreviews' });
const res = await fetch(`https://api.scrapecreators.com/v1/tiktok/user/showcase?${params}`, {
headers: { 'x-api-key': process.env.SCRAPECREATORS_API_KEY }
});
const data = await res.json();
console.log(data);Python
python
import os, requests
r = requests.get(
'https://api.scrapecreators.com/v1/tiktok/user/showcase',
headers={'x-api-key': os.environ['SCRAPECREATORS_API_KEY']},
params={'handle': 'mrtiktokreviews'},
)
r.raise_for_status()
print(r.json())CLI
bash
scrapecreators tiktok-shop user-showcase --helpExample Response
json
{
"success": true,
"credits_remaining": 49999721933,
"products": [
{
"product_id": "1732210666230419545",
"title": "Be Bodywise Hair Growth Roll-On Serum | New Year New You Edition | 3% Rosemary, 3% Redensyl, 2% AnaGain | Precision Scalp Applicator | Paraben/Sulphate-Free | Non-Oily | DHT-Care Botanicals | 50ml",
"image": {
"height": 500,
"width": 500,
"uri": "tos-useast5-i-omjb5zjo8w-tx/b4088e56fc3140799ab2e52674339db4",
"url_list": [
"https://p16-oec-general-useast5.ttcdn-us.com/tos-useast5-i-omjb5zjo8w-tx/b4088e56fc3140799ab2e52674339db4~tplv-fhlh96nyum-crop-webp:500:500.webp?dr=12190&t=555f072d&ps=933b5bde&shp=4ee6669e&shcp=9b759fb9&idc=useast5&from=1323722398"
]
},
"product_price_info": {
"sku_id": "1732210669134516313",
"symbol_position": 1,
"show_currency_space": false,
"currency_show_mode": 1,
"currency_name": "USD",
"currency_symbol": "$",
"sale_price_decimal": "46.58",
"origin_price_decimal": "53",
"sale_price_format": "46.58",
"origin_price_format": "53.00",
"discount_format": "12%",
"discount_decimal": "0.12",
"single_product_price_format": "46.58",
"single_product_price_decimal": "46.58",
"sale_price_integer_part_format": "46",
"sale_price_decimal_part_format": "58",
"decimal_point_symbol": ".",
"promotion_deduction_details": {
"seller_subtotal_deduction": "6.42",
"seller_subtotal_deduction_decimal": "6.42"
}
},
"rate_info": {
"score": 4.5,
"review_count": 326
},
"sold_info": {
"sold_count": 5457
},
"seller_info": {
"seller_id": "7495572938346760281"
},
"seo_url": {
"updated_at": null,
"canonical_url": "https://www.tiktok.com/shop/pdp/1732210666230419545",
"slug": "be-bodywise-hair-growth-roll-on-serum-new-year-new-you-edition-3-rosemary-3-redensyl-2-anagain-precision-scalp-applicator-paraben-sulphate-free-non-oily-dht-care-botanicals-50ml",
"type": 2,
"version": 2
}
}
],
"cursor": "eyJwcm9kdWN0....."
}Credits
Most ScrapeCreators endpoints consume 1 credit per successful response. Some heavier endpoints (transcripts, AI-driven enrichment, ad detail lookups) may cost more. Check GET /v1/credit-balance for your remaining balance.
Errors
| Status | Meaning | Action |
|---|---|---|
| 200 | Success. | Use the JSON payload. |
| 400 | Invalid or missing parameter. | Verify required parameters and value format. |
| 401 | Missing or invalid x-api-key. | Pass a valid API key in the header. |
| 402 | Out of credits. | Top up at scrapecreators.com or wait for plan reset. |
| 404 | Resource not found or private. | Confirm the handle, URL, or id and that the resource is public. |
| 429 | Rate limited. | Backoff and retry with exponential delay. |
| 500 | Server error or upstream platform failure. | Retry with backoff; report persistent errors to support. |