Product List by Shop Name
Introduction
Get product list data for a specified shop with the following features:
- Search by shop name
- Filter by region
- Returns detailed product information including sales volume, ratings, and related video counts
API
bash
POST /product/v1/goodListByShopNameRequest Parameters
Request Parameters
| Field | Type | Required | Description |
|---|---|---|---|
filter | object | No | Filter parameters |
orderby | object | No | Sorting parameters |
page | integer | No | Default:1 |
pagesize | integer | No | Default:10 |
Filter optional values
| Field | Type | Required | Description |
|---|---|---|---|
seller_name | string | Yes | Shop name |
region | string | Yes | Country/Region, e.g. US |
Request Example
bash
curl 'https://openapi.test.fastmoss.com/product/v1/goodListByShopName?client_id=XXX×tamp=XXX&access_token=XXX&sign=XXX' \
--header 'Content-Type: application/json' \
{
"filter": {
"seller_name": "xxxx",
"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 |
title | string | Product title |
region | string | Country/Region |
sold_count | integer | Total sales volume |
relate_author_count | integer | Number of related authors |
relate_video_count | integer | Number of related videos |
category | object | Product category |
yday_sold_count | integer | Yesterday's sales volume |
day7_sold_count | integer | 7-day sales volume |
day28_sold_count | integer | 28-day sales volume |
day90_sold_count | integer | 90-day sales volume |
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 |
sku_count | integer | Number of SKUs |
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 | Shop ID |
name | string | Shop name |
Response Example
json
{
"code": 0,
"data": {
"list": [
{
"product_id": "1729415053505106876",
"title": "tarte best-sellers trending trio - lip plump gloss, mascara & eye pencil set",
"region": "US",
"sold_count": 305746,
"relate_author_count": 11521,
"relate_video_count": 8371,
"category": {
"l1": {
"id": 14,
"name": "Beauty & Personal Care"
},
"l2": {
"id": 848648,
"name": "Beauty"
},
"l3": {
"id": 601529,
"name": "Beauty Sets"
}
},
"yday_sold_count": 7,
"day7_sold_count": 102,
"day28_sold_count": 419,
"day90_sold_count": 1636,
"product_rating": 4.7,
"source": "TikTok Shop",
"tiktok_url": "https://shop.tiktok.com/view/product/1729415053505106876?region=US&local=en",
"fastmoss_url": "https://www.fastmoss.com/ZH_CN/e-commerce/detail/1729415053505106876",
"shop_info": {
"seller_id": "7495150597721263036",
"name": "Tarte Cosmetics"
},
"sku_count": 6
}
],
"total": 17
},
"message": "",
"timestamp": 1743577374,
"request_id": "6d4024ec-bed1-3701-7999-94e88a762d10"
}