TikTok Shop Category products API
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
Pricing
One price, in dollars
pay per request · no subscription · fallbacks added as the catalog growsTry it
Make your first request
run it free, no key · same shape for every API{
"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
}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 30dcurl -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"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| categoryId | string | "700645"TikTok Shop category id, from tiktok_shop.categories (e.g. 700645 for Health). |
| region | string | "US"Two-letter country code of the TikTok Shop market (e.g. US). |
| Response | ||
| data | object | |
| data.hasMore | boolean | True when the category has further pages upstream. |
| data.items | object[] | 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[].currency | string | ISO currency name, e.g. USD. |
| data.items[].discountPct | number | Discount off the original price as a percentage, e.g. 10 for 10% off. Omitted when the product is not discounted. |
| data.items[].image | string | Primary product image URL. |
| data.items[].originalPrice | number | Pre-discount list price (0 when not on sale). |
| data.items[].price | number | Current sale price. |
| data.items[].productId | string | TikTok Shop product id. Populated whenever the provider has data for the entity. |
| data.items[].rating | number | Average review score. |
| data.items[].reviewCount | integer | Number of reviews. |
| data.items[].sellerId | string | TikTok Shop seller id, for joining to the seller's other products. |
| data.items[].shopName | string | Seller shop name. |
| data.items[].soldCount | integer | Units sold. |
| data.items[].title | string | Product title. Populated whenever the provider has data for the entity. |
| data.items[].url | string | Canonical product detail page URL. 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 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.
More to call
Other TikTok Shop endpoints
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.