Skip to content

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/goodListByShopName

Request Parameters

Request Parameters

FieldTypeRequiredDescription
filterobjectNoFilter parameters
orderbyobjectNoSorting parameters
pageintegerNoDefault:1
pagesizeintegerNoDefault:10

Filter optional values

FieldTypeRequiredDescription
seller_namestringYesShop name
regionstringYesCountry/Region, e.g. US

Request Example

bash
curl 'https://openapi.test.fastmoss.com/product/v1/goodListByShopName?client_id=XXX&timestamp=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

FieldTypeDescription
product_idstringProduct ID
titlestringProduct title
regionstringCountry/Region
sold_countintegerTotal sales volume
relate_author_countintegerNumber of related authors
relate_video_countintegerNumber of related videos
categoryobjectProduct category
yday_sold_countintegerYesterday's sales volume
day7_sold_countinteger7-day sales volume
day28_sold_countinteger28-day sales volume
day90_sold_countinteger90-day sales volume
product_ratingfloatProduct rating
sourcestringProduct source
tiktok_urlstringTikTok product URL
fastmoss_urlstringFastmoss product URL
shop_infoobjectShop information
sku_countintegerNumber of SKUs

data.list.category

FieldTypeDescription
l1objectLevel 1 category
l2objectLevel 2 category
l3objectLevel 3 category

data.list.category.l1/l2/l3

FieldTypeDescription
idintegerCategory ID
namestringCategory name

data.list.shop_info

FieldTypeDescription
seller_idstringShop ID
namestringShop 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"
}