TikTok Shop API
TikTok Shop User showcase API
List the TikTok Shop products a creator showcases (title, price, rating, and sales per product).
POST/v1/run/tiktok_shop.user_showcase
Requests
-
30d
Try it
Make your first request
Sample response
Free runs return only the first 3 results. Fund a key to get the full response.
{
"data": {
"nextCursor": "example",
"products": [
{
"currency": "USD",
"imageUrl": "https://example.com/image.jpg",
"originalPrice": "19.99",
"price": "19.99",
"productId": "a1b2c3d4",
"rating": 4.6,
"reviewCount": 12500,
"soldCount": 12500,
"title": "Example title",
"url": "https://example.com/page"
}
]
},
"found": true
}Response interface
interface TiktokShopUserShowcaseResponse {
data: {
nextCursor: string | null;
products: {
currency: string;
imageUrl: string;
originalPrice: string;
price: string;
productId: string;
rating: number;
reviewCount: number;
soldCount: number;
title: string;
url: string;
}[];
} | null;
found: boolean;
}Full parameter and response reference - every field, type, and example for this endpoint.
Reference
Request, response, and price
Last verified 2026-09-16 · uptime and latency measured over 30dPOST /v1/run/tiktok_shop.user_showcase
curl -X POST https://api.getanyapi.com/v1/run/tiktok_shop.user_showcase \
-H "Authorization: Bearer $ANYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"handle":"mrtiktokreviews"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| handle | string | "mrtiktokreviews"The handle of the TikTok user (e.g. mrtiktokreviews). |
| cursor | string | Pagination token for retrieving subsequent product pages. |
| region | string | Geographical region for proxy placement (defaults to US). |
| Response | ||
| data | object | |
| data.nextCursor | string | Opaque cursor for the next page of products, or null when this lane has no more. Pass it back as cursor to continue. |
| data.products | object[] | Populated whenever the provider has data for the entity. |
| data.products[].currency | string | |
| data.products[].imageUrl | string | Populated whenever the provider has data for the entity. |
| data.products[].originalPrice | string | |
| data.products[].price | string | |
| data.products[].productId | string | Populated whenever the provider has data for the entity. |
| data.products[].rating | number | |
| data.products[].reviewCount | integer | |
| data.products[].soldCount | integer | |
| data.products[].title | string | Populated whenever the provider has data for the entity. |
| data.products[].url | string | Populated whenever the provider has data for the entity. |
| found | boolean | |
| Price | ||
| Price per request | USD | $0.0012 |
| Price /1k req | USD | $1.20 |
FAQ
About the TikTok Shop User showcase API
The AnyAPI TikTok Shop User showcase API returns TikTok Shop user showcase data as normalized JSON from one POST call to /v1/run/tiktok_shop.user_showcase. List the TikTok Shop products a creator showcases (title, price, rating, and sales per product). AnyAPI returns one normalized schema whichever source serves it. It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum.
It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum. You fund one USD wallet, each call draws it down, and a failed request costs $0.
List the TikTok Shop products a creator showcases (title, price, rating, and sales per product). The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.