TikTok Shop Search API
Search TikTok Shop products by keyword across 15 countries: price, sales, rating, and seller info per product, in one normalized response.
Provider network
Providers ranked by traffic
Try it
Make your first request
{
"data": {
"items": [
{
"currency": "USD",
"discountPct": 12500,
"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 TiktokShopSearchResponse {
data: {
items: {
currency?: string;
discountPct?: number;
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-09-16 · uptime and latency measured over 30dcurl -X POST https://api.getanyapi.com/v1/run/tiktok_shop.search \
-H "Authorization: Bearer $ANYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"limit":3,"query":"phone case"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| query | string | "phone case"Search keyword for TikTok Shop products (e.g. wireless earbuds). |
| country | enum | Country code of the TikTok Shop market to search (e.g. US). |
| limit | integer | 3Maximum number of results to return (1-10, default 10). |
| Response | ||
| data | object | |
| data.items | object[] | Product records matching the search query: id, title, price, sales count, rating, 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[].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. Omitted when the lane that served this request does not report it. |
| 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 Search API
The AnyAPI TikTok Shop Search API returns TikTok Shop search data as normalized JSON from one POST call to /v1/run/tiktok_shop.search. Search TikTok Shop products by keyword across 15 countries: price, sales, rating, and seller info per product, in one normalized response. AnyAPI routes each request across 2 sources and falls back automatically when one fails. 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 search calls through AnyAPI succeeded, with a median response time of 2.1 seconds across 7,205 measured calls.