Catalog/TikTok Shop/Category products
POST

TikTok Shop Category products API

/v1/run/tiktok_shop.category_products

Browse TikTok Shop products inside a category by category id: price, discount, rating, sales count, seller, and product URL per product.

Category shopRequests / mo 5Routing 1 lane · no failover
Get ~100 free requests

Pricing

One price, in dollars

pay per request · no subscription · fallbacks added as the catalog grows
Request
Gateway request
discovered operation
↓
Router
↓
Providers · 1
↳ One lane serves this endpoint today, so a failed call has nowhere to fail over to. Failed attempts are never billed. Uptime, latency and traffic are measured through the gateway, last 30 days.

Try it

Make your first request

run it free, no key · same shape for every API
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": {
    "hasMore": true,
    "items": [
      {
        "currency": "USD",
        "discountPct": 12500,
        "image": "https://example.com/image.jpg",
        "originalPrice": 19.99,
        "price": 19.99,
        "productId": "a1b2c3d4",
        "rating": 4.6,
        "reviewCount": 12500,
        "sellerId": "a1b2c3d4",
        "shopName": "Example title",
        "soldCount": 12500,
        "title": "Example title",
        "url": "https://example.com/page"
      }
    ]
  },
  "found": true
}
Response interface
interface TiktokShopCategoryProductsResponse {
  data: {
    hasMore?: boolean;
    items: {
      currency?: string;
      discountPct?: number;
      image?: string;
      originalPrice?: number;
      price?: number;
      productId: string;
      rating?: number;
      reviewCount?: number;
      sellerId?: string;
      shopName?: string;
      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-08-23 · uptime and latency measured over 30d
POST /v1/run/tiktok_shop.category_products
curl -X POST https://api.getanyapi.com/v1/run/tiktok_shop.category_products \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"categoryId":"700645","region":"US"}'
FieldTypeExample value
Request body
categoryIdstring"700645"TikTok Shop category id, from tiktok_shop.categories (e.g. 700645 for Health).
regionstring"US"Two-letter country code of the TikTok Shop market (e.g. US).
Response
dataobject
data.hasMorebooleanTrue when the category has further pages upstream.
data.itemsobject[]Product records in the category: id, title, price, rating, sales count, seller, and product URL. Populated whenever the provider has data for the entity.
data.items[].currencystringISO currency name, e.g. USD.
data.items[].discountPctnumberDiscount off the original price as a percentage, e.g. 10 for 10% off. Omitted when the product is not discounted.
data.items[].imagestringPrimary product image URL.
data.items[].originalPricenumberPre-discount list price (0 when not on sale).
data.items[].pricenumberCurrent sale price.
data.items[].productIdstringTikTok Shop product id. Populated whenever the provider has data for the entity.
data.items[].ratingnumberAverage review score.
data.items[].reviewCountintegerNumber of reviews.
data.items[].sellerIdstringTikTok Shop seller id, for joining to the seller's other products.
data.items[].shopNamestringSeller shop name.
data.items[].soldCountintegerUnits sold.
data.items[].titlestringProduct title. Populated whenever the provider has data for the entity.
data.items[].urlstringCanonical product detail page URL. Populated 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 Category products API

The AnyAPI TikTok Shop Category products API returns TikTok Shop category products data as normalized JSON from one POST call to /v1/run/tiktok_shop.category_products. Browse TikTok Shop products inside a category by category id: price, discount, rating, sales count, seller, and product URL 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. Over the last 30 days, 100.0% of TikTok Shop category products calls through AnyAPI succeeded, with a median response time of 1.5 seconds across 5 measured calls.

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.

Browse TikTok Shop products inside a category by category id: price, discount, rating, sales count, seller, and product URL 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.

Over the last 30 days, 100.0% of TikTok Shop category products calls through AnyAPI succeeded, with a median response time of 1.5 seconds across 5 measured calls. These are AnyAPI's own measurements of traffic through the gateway, recomputed continuously, not a published service-level target.

Get started

Two ways to start on AnyAPI

Humans fund a USD wallet and pay per request. Agents point a coding agent at one URL and onboard themselves.

Get ~100 free requests
Works with
Terminal agentsClaude CodeCursorCodexMCP clients