TikTok Shop Products List
Introduction
Retrieve the product list data of the specified TikTok shop, supporting the following functions:
- Supports filtering by shop name
- Supports filtering by shop ID
- Supports filtering by region
- Returns detailed product information, including sales volume, rating, number of related videos, etc.
Endpoint
bash
POST /shop/v1/productListRequest Body
| Field | Type | Required | Description |
|---|---|---|---|
filter | object | No | Filter parameters |
orderby | array | No | Sorting parameters |
page | integer | No | Default: 1 |
pagesize | integer | No | Default: 10 |
filter Optional Values
| Field | Type | Required | Description |
|---|---|---|---|
seller_id | string | No | Shop ID |
creator_uid | string | No | Creator UID associated with the shop |
creator_unique_id | string | No | Unique Creator ID associated with the shop: @xxxxxxx |
seller_name | string | No | Shop Name |
region | string | No | Country/Region of the shop |
seller_nameandregionmust be passed at the same time
request example
bash
curl 'https://openapi.fastmoss.com/shop/v1/productList' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer xxxxxxxxxx' \
--data '{
"filter": {
"seller_id": "xxxxxxxxxxxxxxxx",
# "creator_uid": "xxxxxxxxxxx",
# "creator_unique_id": "xxxxxxx",
# "seller_name": "xxxxxx",
# "region": "US"
},
"page": 1,
"pagesize": 10
}'response body
data.total
- Type: integer
- Description: Total number of results
data.list
| Field | Type | Description |
|---|---|---|
product_id | string | Product ID |
seller_id | string | Shop ID |
title | string | Product title |
region | string | Country/Region |
relate_creator_count | integer | Number of related creators |
relate_video_count | integer | Number of related videos |
category | object | Product category |
sku_count | integer | SKU count |
units_sold | integer | Total sales volume |
yday_units_sold | integer | Yesterday's sales volume |
day7_units_sold | integer | 7 days sales volume |
day28_units_sold | integer | 28 days sales volume |
day90_units_sold | integer | 90 days sales volume |
gmv | float | Total sales amount |
yday_gmv | float | Yesterday's sales amount |
day7_gmv | float | 7 days sales amount |
day28_gmv | float | 28 days sales amount |
day90_gmv | float | 90 days sales amount |
product_rating | float | Product rating |
source | string | Product source |
tiktok_url | string | TikTok product URL |
fastmoss_url | string | Fastmoss product URL |
shop_info | object | Shop information |
data.list.category
| Field | Type | Description |
|---|---|---|
l1 | object | Level 1 category |
l2 | object | Level 2 category |
l3 | object | Level 3 category |
data.list.category.l1/l2/l3
| Field | Type | Description |
|---|---|---|
id | integer | Category ID |
name | string | Category name |
data.list.shop_info
| Field | Type | Description |
|---|---|---|
seller_id | string | Seller ID |
name | string | Seller name |
response example
json
{
"code": 0,
"data": {
"list": [
{
"product_id": "1729415053505106876",
"seller_id": "xxxxxxxxxxxxx",
"title": "tarte best-sellers trending trio - lip plump gloss, mascara & eye pencil set",
"region": "US",
"relate_creator_count": 11521,
"relate_video_count": 8371,
"category": {
"l1": {
"id": 14,
"name": "Beauty & Personal Care"
},
"l2": {
"id": 848648,
"name": "Makeup"
},
"l3": {
"id": 601529,
"name": "Makeup Sets"
}
},
"units_sold": 305746,
"yday_units_sold": 7,
"day7_units_sold": 102,
"day28_units_sold": 419,
"day90_units_sold": 1636,
"gmv": 700.0,
"yday_gmv": 23700.0,
"day7_gmv": 702340.0,
"day28_gmv": 702340.0,
"day90_gmv": 74234200.0,
"product_rating": 4.7,
"tiktok_url": "https://shop.tiktok.com/view/product/1729415053505106876?region=US&local=en",
"sku_count": 6
}
],
"total": 17
},
"message": "",
"timestamp": 1743577374,
"request_id": "6d4024ec-bed1-3701-7999-94e88a762d10"
}