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

Pricing

One price, in dollars

Providers
Giraffe- served- uptime- p50$1.20/1k reqflat

Try it

Make your first request

Open in
Get a free key
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 30d
POST /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"}'
FieldTypeExample value
Request body
handlestring"mrtiktokreviews"The handle of the TikTok user (e.g. mrtiktokreviews).
cursorstringPagination token for retrieving subsequent product pages.
regionstringGeographical region for proxy placement (defaults to US).
Response
dataobject
data.nextCursorstringOpaque cursor for the next page of products, or null when this lane has no more. Pass it back as cursor to continue.
data.productsobject[]Populated whenever the provider has data for the entity.
data.products[].currencystring
data.products[].imageUrlstringPopulated whenever the provider has data for the entity.
data.products[].originalPricestring
data.products[].pricestring
data.products[].productIdstringPopulated whenever the provider has data for the entity.
data.products[].ratingnumber
data.products[].reviewCountinteger
data.products[].soldCountinteger
data.products[].titlestringPopulated whenever the provider has data for the entity.
data.products[].urlstringPopulated whenever the provider has data for the entity.
foundboolean
Price
Price per requestUSD$0.0012
Price /1k reqUSD$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.