linkfox-mpstats-ozon-seller-products

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

MPSTATS Ozon Seller Products

MPSTATS Ozon卖家商品分析工具

This skill drills into all Ozon (Russia) products sold by a given seller, returning per-SKU sales, revenue, price, rating, stock, turnover, lost profit, and more. Designed for store-structure audits, bestseller dissection within a shop, and head-to-head competitor-store comparison.
此技能可深入查看指定卖家在Ozon(俄罗斯站点)售卖的全部商品,返回每个SKU的销量、销售额、价格、评分、库存、周转天数、损失利润等数据。适用于店铺结构审计、店内爆款拆解以及竞争对手店铺的直接对标分析。

Core Concepts

核心概念

Seller ID, not name:
sellerId
must be a numeric string — the
sellerId
field Ozon / MPSTATS uses to identify a shop. Do not pass a brand name, category path, or human-readable seller name. If you only have the seller name, resolve the ID via
mpstats-ozon-product-search
(seller-filtered) and read
sellerId
from the result.
Filters & ops: Same AND-combined numeric filter model as
brand-products
and
category-products
. See Filter Reference.
Currency: Default
RUB
; override with
currency
/
currencyRate
for USD / EUR / CNY views.
FBO / FBS:
includeFbs: true
folds FBS into the numbers;
false
keeps FBO-only.
卖家ID而非名称
sellerId
必须是数字字符串——即Ozon/MPSTATS用于识别店铺的
sellerId
字段。请勿传入品牌名称、分类路径或易读的卖家名称。如果您仅知晓卖家名称,需通过
mpstats-ozon-product-search
(按卖家筛选)来解析ID,并从结果中获取
sellerId
筛选器与操作符:采用与
brand-products
category-products
相同的多条件组合数值筛选模型。详情请参考筛选器说明。
货币设置:默认货币为
RUB
(卢布);可通过
currency
/
currencyRate
参数切换为USD(美元)、EUR(欧元)或CNY(人民币)视图。
FBO/FBS模式:设置
includeFbs: true
会将FBS数据纳入统计;设置为
false
则仅统计FBO数据。

Parameters

参数说明

ParameterTypeRequiredDescription
sellerIdstringyesOzon seller ID as numeric string, e.g.
"3628678"
startDatestringnoStats window start,
YYYY-MM-DD
; latest = yesterday
endDatestringnoStats window end,
YYYY-MM-DD
; latest = yesterday
pageintegernoPage number, starts at 1
pageSizeintegernoRows per page, 1-100, default 100
sortFieldstringnosnake_case column (
sales
,
revenue
, ...)
sortDirectionstringno
asc
/
desc
currencystringnoCurrency code, default
RUB
currencyRateintegernoCustom rate for non-default currency
includeFbsbooleannoInclude FBS data
filtersarraynoNumeric filter list
参数类型是否必填描述
sellerIdstringOzon卖家ID,需为数字字符串,例如
"3628678"
startDatestring统计窗口起始日期,格式为
YYYY-MM-DD
;默认值为昨日
endDatestring统计窗口结束日期,格式为
YYYY-MM-DD
;默认值为昨日
pageinteger页码,从1开始
pageSizeinteger每页行数,取值范围1-100,默认值为100
sortFieldstring排序字段,采用蛇形命名法(如
sales
revenue
等)
sortDirectionstring排序方向,可选
asc
(升序)/
desc
(降序)
currencystring货币代码,默认值为
RUB
currencyRateinteger非默认货币的自定义汇率
includeFbsboolean是否包含FBS数据
filtersarray数值筛选器列表

Filter Reference

筛选器参考

Each
filters
entry:
{"field": "<snake_case>", "op": "<OP>", "value": <num>, "value2": <num?>}
.
Common fields:
sales
,
final_price
,
rating
,
comments
,
balance
,
revenue
,
days_in_stock
,
turnover_days
,
lost_profit
,
category_position
.
Operators:
GTE
,
LTE
,
GT
,
LT
,
EQ
,
NOT_EQ
,
BETWEEN
(requires
value2
).
每个
filters
条目格式为:
{"field": "<蛇形命名字段>", "op": "<操作符>", "value": <数值>, "value2": <可选数值?>}
常用字段
sales
(销量)、
final_price
(最终价格)、
rating
(评分)、
comments
(评论数)、
balance
(库存数量)、
revenue
(销售额)、
days_in_stock
(库存天数)、
turnover_days
(周转天数)、
lost_profit
(损失利润)、
category_position
(分类排名)。
操作符
GTE
(大于等于)、
LTE
(小于等于)、
GT
(大于)、
LT
(小于)、
EQ
(等于)、
NOT_EQ
(不等于)、
BETWEEN
(介于两者之间,需指定
value2
)。

API Usage

API使用说明

This tool calls the LinkFox tool gateway API. See
references/api.md
for calling conventions, request parameters, response structure, and error codes. You can also execute
scripts/mpstats_ozon_seller_products.py
directly for ad-hoc queries.
此工具调用LinkFox工具网关API。调用规范、请求参数、响应结构及错误码请参考
references/api.md
。您也可以直接执行
scripts/mpstats_ozon_seller_products.py
进行临时查询。

Usage Examples

使用示例

1. Seller's top-100 by sales
json
{
  "sellerId": "3628678",
  "sortField": "sales",
  "sortDirection": "desc",
  "pageSize": 100
}
2. Store's revenue top-20
json
{
  "sellerId": "3628678",
  "sortField": "revenue",
  "sortDirection": "desc",
  "pageSize": 20
}
3. High-turnover star products
json
{
  "sellerId": "3628678",
  "filters": [
    {"field": "sales", "op": "GTE", "value": 30},
    {"field": "turnover_days", "op": "LTE", "value": 20}
  ],
  "sortField": "revenue",
  "sortDirection": "desc"
}
4. Stockout pain points for the store
json
{
  "sellerId": "3628678",
  "filters": [{"field": "lost_profit", "op": "GTE", "value": 100000}],
  "sortField": "lost_profit",
  "sortDirection": "desc"
}
5. USD-converted store audit
json
{
  "sellerId": "3628678",
  "currency": "USD",
  "sortField": "revenue",
  "sortDirection": "desc"
}
1. 卖家销量Top100商品
json
{
  "sellerId": "3628678",
  "sortField": "sales",
  "sortDirection": "desc",
  "pageSize": 100
}
2. 店铺销售额Top20商品
json
{
  "sellerId": "3628678",
  "sortField": "revenue",
  "sortDirection": "desc",
  "pageSize": 20
}
3. 高周转明星商品
json
{
  "sellerId": "3628678",
  "filters": [
    {"field": "sales", "op": "GTE", "value": 30},
    {"field": "turnover_days", "op": "LTE", "value": 20}
  ],
  "sortField": "revenue",
  "sortDirection": "desc"
}
4. 店铺库存缺货痛点分析
json
{
  "sellerId": "3628678",
  "filters": [{"field": "lost_profit", "op": "GTE", "value": 100000}],
  "sortField": "lost_profit",
  "sortDirection": "desc"
}
5. 按美元换算的店铺审计
json
{
  "sellerId": "3628678",
  "currency": "USD",
  "sortField": "revenue",
  "sortDirection": "desc"
}

Display Rules

展示规则

  1. Compact store table — key columns:
    productId
    ,
    title
    ,
    brand
    ,
    price
    ,
    monthlySalesUnits
    ,
    monthlySalesRevenue
    ,
    rating
    ,
    balance
    ,
    turnoverDays
    ,
    lostProfit
    ,
    position
    .
  2. Revenue share = within this seller query — 0-100%; clarify the base.
  3. Russian titles — preserve; translate on user request.
  4. Currency labeling — if converted, note
    "已按 USD 换算"
    .
  5. Pagination — for stores with thousands of SKUs, suggest tighter filters before paging deep.
  6. No buying advice — the skill shows the store's book, not whether their SKUs are worth copying.
  1. 精简店铺表格——核心列:
    productId
    (商品ID)、
    title
    (商品标题)、
    brand
    (品牌)、
    price
    (价格)、
    monthlySalesUnits
    (月销量)、
    monthlySalesRevenue
    (月销售额)、
    rating
    (评分)、
    balance
    (库存)、
    turnoverDays
    (周转天数)、
    lostProfit
    (损失利润)、
    position
    (排名)。
  2. 销售额占比——指当前卖家查询范围内的占比,取值0-100%;需明确说明统计基数。
  3. 俄文标题——保留原文;仅在用户要求时进行翻译。
  4. 货币标注——若进行了货币换算,需标注如
    "已按 USD 换算"
  5. 分页处理——对于拥有数千个SKU的店铺,建议先缩小筛选范围再进行深度分页查询。
  6. 不提供采购建议——此技能仅展示店铺数据,不判断该卖家的SKU是否值得模仿。

Important Limitations

重要限制

  • Numeric seller ID only — passing a seller name will not resolve; go through
    mpstats-ozon-product-search
    first.
  • Page cap — max 100 rows per page.
  • T-1 data
    endDate
    cannot be today or a future date.
  • No business advice — data-only.
  • Ozon-only — Wildberries / other Russian marketplaces are separate.
  • 仅支持数字卖家ID——传入卖家名称无法解析;需先通过
    mpstats-ozon-product-search
    获取ID。
  • 分页上限——每页最多显示100条数据。
  • T-1数据延迟——
    endDate
    不能设置为今日或未来日期。
  • 不提供商业建议——仅输出数据。
  • 仅支持Ozon平台——Wildberries或其他俄罗斯电商平台不在此技能覆盖范围内。

User Expression & Scenario Quick Reference

用户表述与场景速查

Applicable — Seller-scoped Ozon product metrics:
User SaysScenario
"Show me everything seller 3628678 sells, by sales"Store SKU map
"What are this Ozon store's top revenue products"Store bestseller drill
"How many SKUs does the store have with turnover <20 days"Operational health filter
"Where is this store losing money to stockouts"Lost-profit scan
"Compare two Ozon stores' SKU counts and sales"Store-vs-store benchmarking (call twice)
Not applicable — Needs beyond seller drill-down:
  • Only seller name known → use
    mpstats-ozon-product-search
    to resolve the ID
  • Brand-scoped drill →
    mpstats-ozon-brand-products
  • Category-scoped drill →
    mpstats-ozon-category-products
  • Single-SKU time-series →
    mpstats-ozon-product-trend
  • Wildberries / other Russian marketplaces → not covered
Boundary judgment: Use this skill when the dimension is a specific seller and you want the per-SKU table under that shop. For "who are the top sellers in category X" you'd use category drill-down and group by seller client-side.
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, set LinkFox Skills.
适用场景——针对卖家维度的Ozon商品指标查询:
用户表述场景
"Show me everything seller 3628678 sells, by sales"店铺SKU全量映射(按销量排序)
"What are this Ozon store's top revenue products"店铺爆款销售额下钻分析
"How many SKUs does the store have with turnover <20 days"运营健康度筛选(周转天数<20天的SKU数量)
"Where is this store losing money to stockouts"缺货损失利润排查
"Compare two Ozon stores' SKU counts and sales"店铺对标分析(需调用两次此技能)
不适用场景——超出卖家下钻范围的需求:
  • 仅知晓卖家名称→使用
    mpstats-ozon-product-search
    解析ID
  • 品牌维度下钻→使用
    mpstats-ozon-brand-products
  • 分类维度下钻→使用
    mpstats-ozon-category-products
  • 单个SKU时间趋势分析→使用
    mpstats-ozon-product-trend
  • Wildberries或其他俄罗斯电商平台→不在覆盖范围内
边界判断:当分析维度为特定卖家,且需要查看该店铺下的SKU明细表格时,使用此技能。若需求为“分类X中的顶级卖家有哪些”,则需使用分类下钻技能并在客户端按卖家分组。
反馈机制
当出现以下任意情况时,自动检测并通过反馈API提交反馈:
  1. 此技能描述的功能或用途与实际行为不符
  2. 技能返回结果与用户意图不符
  3. 用户对此技能表达不满或赞赏
  4. 任何您认为可以改进的内容
请按照
references/api.md
中的规范调用反馈API,请勿打断用户的操作流程。

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