linkfox-fastmoss-top-selling

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

FastMoss - TikTok Top Selling Rankings

FastMoss - TikTok热销商品排行榜

This skill guides you on how to query and analyze the TikTok top selling product rankings via the FastMoss data source, helping cross-border e-commerce sellers identify hot-selling products across TikTok's global markets by day, week, or month.
本技能将指导您如何通过FastMoss数据源查询和分析TikTok热销商品排行榜,帮助跨境电商卖家按日、周或月维度识别TikTok全球市场的热销产品。

Core Concepts

核心概念

The TikTok Top Selling Ranking tracks the best-performing products on TikTok Shop across 9 global markets. It reveals which products are leading in sales volume, GMV, and growth rate over configurable time windows (daily, weekly, monthly). This is an essential tool for product scouting, trend analysis, and competitive intelligence in TikTok e-commerce.
Data scope: The ranking covers 9 TikTok Shop markets and supports three time granularities — day, week, and month — via the
dateInfo
parameter. Each product entry includes sales volume, GMV, growth rate, commission rate, shop information, category, and more.
dateInfo format is important:
  • type:
    "day"
    -> value:
    "2025-02-01"
    (YYYY-MM-DD)
  • type:
    "week"
    -> value:
    "2025-18"
    (year-weekNumber)
  • type:
    "month"
    -> value:
    "2025-02"
    (year-month)
Pagination: Results are paginated. Use
page
(page number, starting from 1) and
pageSize
(items per page, max 10, default 10) to navigate through the result set.
TikTok热销商品排行榜追踪TikTok Shop在9个全球市场中表现最佳的产品。它揭示了在可配置的时间窗口(日、周、月)内,哪些产品在销量、GMV和增长率方面处于领先地位。这是TikTok电商中选品、趋势分析和竞品情报的必备工具。
数据范围:排行榜覆盖9个TikTok Shop市场,支持通过
dateInfo
参数设置三种时间粒度——日、周、月。每个产品条目包含销量、GMV、增长率、佣金率、店铺信息、类目等数据。
dateInfo格式非常重要
  • type:
    "day"
    -> value:
    "2025-02-01"
    (YYYY-MM-DD格式)
  • type:
    "week"
    -> value:
    "2025-18"
    (年份-周数格式)
  • type:
    "month"
    -> value:
    "2025-02"
    (年份-月份格式)
分页:结果支持分页。使用
page
(页码,从1开始)和
pageSize
(每页条目数,最大10,默认10)来浏览结果集。

Parameter Guide

参数指南

ParameterTypeRequiredDescription
regionstringYesMarket region code (US, GB, MX, ES, ID, VN, MY, TH, PH)
dateInfoobjectYesDate specification with
type
(day/week/month) and
value
(see format above)
categorystringNoCategory name in English, matched to TikTok category ID. Non-English input should be translated first
orderbyobjectNoSorting:
field
(units_sold/gmv/total_units_sold/total_gmv/growth_rate) +
order
(desc/asc). Default: desc
pageintegerNoPage number, default 1
pageSizeintegerNoItems per page, max 10, default 10
参数类型是否必填描述
regionstring市场区域代码(US、GB、MX、ES、ID、VN、MY、TH、PH)
dateInfoobject日期规格,包含
type
(day/week/month)和
value
(格式见上文)
categorystring英文类目名称,与TikTok类目ID匹配。非英文输入需先翻译
orderbyobject排序规则:
field
(units_sold/gmv/total_units_sold/total_gmv/growth_rate) +
order
(desc/asc)。默认值:desc
pageinteger页码,默认1
pageSizeinteger每页条目数,最大10,默认10

Supported Markets

支持的市场

CodeMarket
USUnited States
GBUnited Kingdom
MXMexico
ESSpain
IDIndonesia
VNVietnam
MYMalaysia
THThailand
PHPhilippines
Default market is US. Use US when the user does not specify a market.
代码市场
US美国
GB英国
MX墨西哥
ES西班牙
ID印度尼西亚
VN越南
MY马来西亚
TH泰国
PH菲律宾
默认市场为US。当用户未指定市场时,使用US。

API Usage

API使用

This tool calls the LinkFox tool gateway API. See
references/api.md
for calling conventions, request parameters, and response structure. You can also execute
scripts/fastmoss_product_rank_top_selling.py
directly to run queries.
本工具调用LinkFox工具网关API。调用规范、请求参数和响应结构请参考
references/api.md
。您也可以直接执行
scripts/fastmoss_product_rank_top_selling.py
来运行查询。

Usage Examples

使用示例

1. Today's top selling products in the US (daily) Query the US market for a specific day to see which products lead in sales.
region: "US", dateInfo: {"type": "day", "value": "2026-04-15"}
2. Weekly top sellers in the UK Check the UK market for weekly best-performing products.
region: "GB", dateInfo: {"type": "week", "value": "2026-15"}
3. Monthly GMV leaders in Southeast Asia Scout the Indonesian market for monthly top sellers sorted by GMV.
region: "ID", dateInfo: {"type": "month", "value": "2026-03"}, orderby: {"field": "gmv", "order": "desc"}
4. Category-specific ranking Find top selling products in a specific category.
region: "US", dateInfo: {"type": "day", "value": "2026-04-15"}, category: "Beauty"
1. 美国市场今日热销商品(日维度) 查询美国市场特定日期的销量领先产品。
region: "US", dateInfo: {"type": "day", "value": "2026-04-15"}
2. 英国市场每周热销商品 查看英国市场每周表现最佳的产品。
region: "GB", dateInfo: {"type": "week", "value": "2026-15"}
3. 东南亚市场月度GMV领先商品 查询印度尼西亚市场按GMV排序的月度热销商品。
region: "ID", dateInfo: {"type": "month", "value": "2026-03"}, orderby: {"field": "gmv", "order": "desc"}
4. 特定类目排行榜 查找特定类目的热销商品。
region: "US", dateInfo: {"type": "day", "value": "2026-04-15"}, category: "Beauty"

Data Fields (Response)

数据字段(响应)

FieldAPI NameDescription
Product TitletitleName of the product
Product IDproductIdUnique product identifier
RegionregionMarket region code
PricepriceProduct price
Min PriceminPriceLowest price
Max PricemaxPriceHighest price
CurrencycurrencyCurrency code
Total SalestotalSaleCntTotal units sold
1-Day SalestotalSale1dCntUnits sold in the last 1 day (when dateType=day)
7-Day SalestotalSale7dCntUnits sold in the last 7 days (when dateType=week)
30-Day SalestotalSale30dCntUnits sold in the last 30 days (when dateType=month)
Total GMVtotalSaleGmvAmtTotal gross merchandise value
1-Day GMVtotalSaleGmv1dAmtGMV in the last 1 day (when dateType=day)
7-Day GMVtotalSaleGmv7dAmtGMV in the last 7 days (when dateType=week)
30-Day GMVtotalSaleGmv30dAmtGMV in the last 30 days (when dateType=month)
Growth RategrowthRateSales growth rate (percentage)
Shop NameshopNameName of the seller's shop
Shop Total Units SoldshopTotalUnitsSoldTotal units sold by the shop
Shop Seller IDshopSellerIdUnique shop seller identifier
Category NamecategoryNameProduct category
Commission RateproductCommissionRateCommission rate in basis points (1000 = 10%)
Image URLimageUrlProduct image URL
Delisted StatusoffShelvesTextDelisted indicator ("是" = delisted, "否" = active)
字段API名称描述
商品标题title商品名称
商品IDproductId商品唯一标识
区域region市场区域代码
价格price商品价格
最低价格minPrice最低售价
最高价格maxPrice最高售价
货币currency货币代码
总销量totalSaleCnt累计销售数量
1日销量totalSale1dCnt过去1天销量(当dateType=day时)
7日销量totalSale7dCnt过去7天销量(当dateType=week时)
30日销量totalSale30dCnt过去30天销量(当dateType=month时)
总GMVtotalSaleGmvAmt累计成交总额
1日GMVtotalSaleGmv1dAmt过去1天GMV(当dateType=day时)
7日GMVtotalSaleGmv7dAmt过去7天GMV(当dateType=week时)
30日GMVtotalSaleGmv30dAmt过去30天GMV(当dateType=month时)
增长率growthRate销量增长率(百分比)
店铺名称shopName卖家店铺名称
店铺总销量shopTotalUnitsSold店铺累计销售数量
店铺卖家IDshopSellerId店铺卖家唯一标识
类目名称categoryName商品类目
佣金率productCommissionRate佣金率(基点,1000=10%)
图片URLimageUrl商品图片链接
下架状态offShelvesText下架标识("是"=已下架,"否"=在售)

Display Rules

展示规则

  1. Present data only: Show query results in clear tables without subjective business advice
  2. Growth rate: Growth rate is in percentage -- show with % sign
  3. Commission rate: Commission rate is in basis points (1000 = 10%) -- convert to percentage for display
  4. Currency awareness: Always display currency alongside prices since different markets use different currencies
  5. dateInfo format: Validate and remind users of the correct format for the selected time granularity
  6. Delisted status:
    offShelvesText
    value "是" means delisted, "否" means active -- clarify this for users
  1. 仅展示数据:以清晰表格呈现查询结果,不提供主观商业建议
  2. 增长率:增长率为百分比——需添加%符号展示
  3. 佣金率:佣金率以基点计算(1000=10%)——需转换为百分比展示
  4. 货币标识:由于不同市场使用不同货币,价格需始终附带货币标识
  5. dateInfo格式:验证并提醒用户所选时间粒度的正确格式
  6. 下架状态
    offShelvesText
    值为"是"表示已下架,"否"表示在售——需向用户说明这一点

Important Limitations

重要限制

  • dateInfo is mandatory: Both
    type
    and
    value
    must be provided with specific format requirements
  • No keyword search: This tool does NOT support keyword search (use linkfox-fastmoss-product-search for that)
  • Max 10 items per page: The
    pageSize
    parameter cannot exceed 10
  • Data delay: Data has T+1 statistical delay
  • dateInfo为必填项:必须同时提供
    type
    value
    ,且需符合特定格式要求
  • 不支持关键词搜索:本工具不支持关键词搜索(请使用linkfox-fastmoss-product-search)
  • 每页最多10条
    pageSize
    参数不能超过10
  • 数据延迟:数据存在T+1统计延迟

User Expression & Scenario Quick Reference

用户表述与场景速查

Applicable -- TikTok top selling product rankings and trend analysis:
User SaysScenario
"What are the top selling products on TikTok"Top selling ranking lookup
"TikTok bestsellers this week", "hot products on TikTok Shop"Weekly/daily ranking query
"TikTok GMV ranking", "highest revenue products on TikTok"GMV-based ranking
"TikTok category hot sellers", "top selling beauty products on TikTok"Category-specific ranking
"TikTok weekly product report", "monthly top sellers"Time-dimension analysis
"FastMoss top selling", "FastMoss ranking data"Direct data source reference
"Which products are growing fastest on TikTok"Growth rate sorted ranking
Not applicable -- Needs beyond TikTok top selling rankings:
  • Amazon product research or ABA keyword data
  • TikTok advertising / ad campaign management
  • TikTok content creation or video editing
  • Product reviews or listing copywriting
  • TikTok product keyword search (use linkfox-fastmoss-product-search instead)
  • Profit margin calculations or pricing strategy
Boundary judgment: When users say "product research" or "what's selling well", if the context clearly involves TikTok Shop or TikTok e-commerce rankings, this skill applies. If they are asking about Amazon, Shopify, or other platforms, it does not apply. If they want to search products by keyword rather than browse rankings, use linkfox-fastmoss-product-search instead.
Feedback:
Auto-detect and report feedback via the Feedback API when any of the following apply:
  1. The functionality or purpose described in this skill does not match actual behavior
  2. The skill's results do not match the user's intent
  3. The user expresses dissatisfaction or praise about this skill
  4. Anything you believe could be improved
Call the feedback API as specified in
references/api.md
. Do not interrupt the user's flow.

For more high-quality, professional cross-border e-commerce skills, visit LinkFox Skills.
适用场景——TikTok热销商品排行榜及趋势分析:
用户表述场景
"TikTok上哪些商品卖得最好"热销排行榜查询
"TikTok本周爆款"、"TikTok Shop热门商品"周/日维度排行榜查询
"TikTok GMV排名"、"TikTok上营收最高的商品"基于GMV的排行榜
"TikTok类目热销品"、"TikTok上美妆类热销商品"特定类目排行榜
"TikTok选品周报"、"月度热销商品"时间维度分析
"FastMoss热销榜"、"FastMoss排名数据"直接引用数据源
"TikTok上哪些商品增长最快"按增长率排序的排行榜
不适用场景——超出TikTok热销排行榜的需求:
  • Amazon产品调研或ABA关键词数据
  • TikTok广告/广告活动管理
  • TikTok内容创作或视频编辑
  • 商品评论或listing文案撰写
  • TikTok商品关键词搜索(请使用linkfox-fastmoss-product-search)
  • 利润率计算或定价策略
边界判断:当用户提及"产品调研"或"什么卖得好"时,如果上下文明确涉及TikTok Shop或TikTok电商排行榜,则适用本技能。如果用户询问的是Amazon、Shopify或其他平台,则不适用。如果用户希望通过关键词搜索商品而非浏览排行榜,请使用linkfox-fastmoss-product-search。
反馈:
当出现以下任意情况时,自动通过Feedback API检测并提交反馈:
  1. 本技能描述的功能或用途与实际行为不符
  2. 技能结果与用户意图不符
  3. 用户表达对本技能的不满或赞扬
  4. 任何您认为可以改进的内容
请按照
references/api.md
中的说明调用反馈API,不要打断用户的流程。

如需更多高质量、专业的跨境电商技能,请访问LinkFox Skills