linkfox-mpstats-ozon-seller-products
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseMPSTATS 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: must be a numeric string — the 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 (seller-filtered) and read from the result.
sellerIdsellerIdmpstats-ozon-product-searchsellerIdFilters & ops: Same AND-combined numeric filter model as and . See Filter Reference.
brand-productscategory-productsCurrency: Default ; override with / for USD / EUR / CNY views.
RUBcurrencycurrencyRateFBO / FBS: folds FBS into the numbers; keeps FBO-only.
includeFbs: truefalse卖家ID而非名称:必须是数字字符串——即Ozon/MPSTATS用于识别店铺的字段。请勿传入品牌名称、分类路径或易读的卖家名称。如果您仅知晓卖家名称,需通过(按卖家筛选)来解析ID,并从结果中获取。
sellerIdsellerIdmpstats-ozon-product-searchsellerId筛选器与操作符:采用与和相同的多条件组合数值筛选模型。详情请参考筛选器说明。
brand-productscategory-products货币设置:默认货币为(卢布);可通过/参数切换为USD(美元)、EUR(欧元)或CNY(人民币)视图。
RUBcurrencycurrencyRateFBO/FBS模式:设置会将FBS数据纳入统计;设置为则仅统计FBO数据。
includeFbs: truefalseParameters
参数说明
| Parameter | Type | Required | Description |
|---|---|---|---|
| sellerId | string | yes | Ozon seller ID as numeric string, e.g. |
| startDate | string | no | Stats window start, |
| endDate | string | no | Stats window end, |
| page | integer | no | Page number, starts at 1 |
| pageSize | integer | no | Rows per page, 1-100, default 100 |
| sortField | string | no | snake_case column ( |
| sortDirection | string | no | |
| currency | string | no | Currency code, default |
| currencyRate | integer | no | Custom rate for non-default currency |
| includeFbs | boolean | no | Include FBS data |
| filters | array | no | Numeric filter list |
| 参数 | 类型 | 是否必填 | 描述 |
|---|---|---|---|
| sellerId | string | 是 | Ozon卖家ID,需为数字字符串,例如 |
| startDate | string | 否 | 统计窗口起始日期,格式为 |
| endDate | string | 否 | 统计窗口结束日期,格式为 |
| page | integer | 否 | 页码,从1开始 |
| pageSize | integer | 否 | 每页行数,取值范围1-100,默认值为100 |
| sortField | string | 否 | 排序字段,采用蛇形命名法(如 |
| sortDirection | string | 否 | 排序方向,可选 |
| currency | string | 否 | 货币代码,默认值为 |
| currencyRate | integer | 否 | 非默认货币的自定义汇率 |
| includeFbs | boolean | 否 | 是否包含FBS数据 |
| filters | array | 否 | 数值筛选器列表 |
Filter Reference
筛选器参考
Each entry: .
filters{"field": "<snake_case>", "op": "<OP>", "value": <num>, "value2": <num?>}Common fields: , , , , , , , , , .
salesfinal_priceratingcommentsbalancerevenuedays_in_stockturnover_dayslost_profitcategory_positionOperators: , , , , , , (requires ).
GTELTEGTLTEQNOT_EQBETWEENvalue2每个条目格式为:。
filters{"field": "<蛇形命名字段>", "op": "<操作符>", "value": <数值>, "value2": <可选数值?>}常用字段:(销量)、(最终价格)、(评分)、(评论数)、(库存数量)、(销售额)、(库存天数)、(周转天数)、(损失利润)、(分类排名)。
salesfinal_priceratingcommentsbalancerevenuedays_in_stockturnover_dayslost_profitcategory_position操作符:(大于等于)、(小于等于)、(大于)、(小于)、(等于)、(不等于)、(介于两者之间,需指定)。
GTELTEGTLTEQNOT_EQBETWEENvalue2API Usage
API使用说明
This tool calls the LinkFox tool gateway API. See for calling conventions, request parameters, response structure, and error codes. You can also execute directly for ad-hoc queries.
references/api.mdscripts/mpstats_ozon_seller_products.py此工具调用LinkFox工具网关API。调用规范、请求参数、响应结构及错误码请参考。您也可以直接执行进行临时查询。
references/api.mdscripts/mpstats_ozon_seller_products.pyUsage 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
展示规则
- Compact store table — key columns: ,
productId,title,brand,price,monthlySalesUnits,monthlySalesRevenue,rating,balance,turnoverDays,lostProfit.position - Revenue share = within this seller query — 0-100%; clarify the base.
- Russian titles — preserve; translate on user request.
- Currency labeling — if converted, note .
"已按 USD 换算" - Pagination — for stores with thousands of SKUs, suggest tighter filters before paging deep.
- No buying advice — the skill shows the store's book, not whether their SKUs are worth copying.
- 精简店铺表格——核心列:(商品ID)、
productId(商品标题)、title(品牌)、brand(价格)、price(月销量)、monthlySalesUnits(月销售额)、monthlySalesRevenue(评分)、rating(库存)、balance(周转天数)、turnoverDays(损失利润)、lostProfit(排名)。position - 销售额占比——指当前卖家查询范围内的占比,取值0-100%;需明确说明统计基数。
- 俄文标题——保留原文;仅在用户要求时进行翻译。
- 货币标注——若进行了货币换算,需标注如。
"已按 USD 换算" - 分页处理——对于拥有数千个SKU的店铺,建议先缩小筛选范围再进行深度分页查询。
- 不提供采购建议——此技能仅展示店铺数据,不判断该卖家的SKU是否值得模仿。
Important Limitations
重要限制
- Numeric seller ID only — passing a seller name will not resolve; go through first.
mpstats-ozon-product-search - Page cap — max 100 rows per page.
- T-1 data — cannot be today or a future date.
endDate - No business advice — data-only.
- Ozon-only — Wildberries / other Russian marketplaces are separate.
- 仅支持数字卖家ID——传入卖家名称无法解析;需先通过获取ID。
mpstats-ozon-product-search - 分页上限——每页最多显示100条数据。
- T-1数据延迟——不能设置为今日或未来日期。
endDate - 不提供商业建议——仅输出数据。
- 仅支持Ozon平台——Wildberries或其他俄罗斯电商平台不在此技能覆盖范围内。
User Expression & Scenario Quick Reference
用户表述与场景速查
Applicable — Seller-scoped Ozon product metrics:
| User Says | Scenario |
|---|---|
| "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 to resolve the ID
mpstats-ozon-product-search - 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:
- The functionality or purpose described in this skill does not match actual behavior
- The skill's results do not match the user's intent
- The user expresses dissatisfaction or praise about this skill
- Anything you believe could be improved
Call the feedback API as specified in . Do not interrupt the user's flow.
references/api.mdFor 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" | 店铺对标分析(需调用两次此技能) |
不适用场景——超出卖家下钻范围的需求:
- 仅知晓卖家名称→使用解析ID
mpstats-ozon-product-search - 品牌维度下钻→使用
mpstats-ozon-brand-products - 分类维度下钻→使用
mpstats-ozon-category-products - 单个SKU时间趋势分析→使用
mpstats-ozon-product-trend - Wildberries或其他俄罗斯电商平台→不在覆盖范围内
边界判断:当分析维度为特定卖家,且需要查看该店铺下的SKU明细表格时,使用此技能。若需求为“分类X中的顶级卖家有哪些”,则需使用分类下钻技能并在客户端按卖家分组。
反馈机制:
当出现以下任意情况时,自动检测并通过反馈API提交反馈:
- 此技能描述的功能或用途与实际行为不符
- 技能返回结果与用户意图不符
- 用户对此技能表达不满或赞赏
- 任何您认为可以改进的内容
请按照中的规范调用反馈API,请勿打断用户的操作流程。
references/api.md如需更多高质量、专业的跨境电商技能,请访问LinkFox Skills。