编程

MPSTATS-Ozon品牌商品查询

试用

按 Ozon 品牌名拉取该品牌全部商品的销量、销售额、价格、评分、库存与周转等明细。

它能做什么

传入 Ozon 店铺上展示的品牌名(俄语或拉丁),返回该品牌下每个 SKU 的月销量、销售额、售价、评分、评论数、库存、库存周转天数、损失利润等指标。filters 数组里的多条数值条件按 AND 组合,支持 GTE、LTE、GT、LT、EQ、NOT_EQ、BETWEEN 等运算符;可按 sales、revenue、final_price、rating 等列排序,每页最多 100 行。货币默认 RUB,设置 currency 可改为 USD、EUR、CNY 等服务端换算。includeFbs=true 时把 FBS 自发货的库存与销售合并进来。品牌名必须与店铺完全一致,不做模糊匹配。

什么时候用它

  • 看某品牌在 Ozon 上的爆款 SKU 排名
  • 按销售额拆解某品牌的收入结构
  • 在某品牌内筛选高评分且有货的 SKU
  • 定位因断货导致高损失利润的 SKU

技能文档

MPSTATS Ozon Brand Products

This skill drills into all Ozon (Russia) products sold under a given brand display name, returning each SKU's sales, revenue, price, rating, stock, turnover, lost profit, and more. Built for brand competitor audits, brand SKU structure analysis, and bestseller dissection.

Core Concepts

Brand display name: brandName must match what's shown on the Ozon storefront — typically Russian (Cyrillic) or Latin (adidas, Xiaomi). Do not pass a category path, a seller ID, or an internal brand code here. If unsure of the exact spelling, resolve via mpstats-ozon-product-search first.

Filters are AND-combined: The filters array supports multiple numeric conditions ANDed together. Each filter is {field, op, value, value2?}. Common fields and operators are in the Filter Reference below.

Currency & rate: Default currency is RUB. Set currency: "USD" (or another code) to have monetary fields converted server-side; currencyRate lets you override the default rate if desired.

FBO / FBS mix: includeFbs: true folds FBS (seller-shipped) stock + sales into the numbers; false keeps them FBO-only.

Parameters

ParameterTypeRequiredDescription
brandNamestringyesOzon brand display name (Russian or Latin)
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, final_price, balance, rating, ...
sortDirectionstringnoasc or desc
currencystringnoCurrency code, default RUB; e.g. USD, EUR, CNY
currencyRateintegernoCustom rate when non-default currency is used
includeFbsbooleannoInclude FBS data
filtersarraynoNumeric filter conditions (see below)

Filter Reference

Each filters entry: {"field": "", "op": "", "value": , "value2": }.

Common fields: sales (monthly units), final_price (selling price RUB), rating (0-5), comments (review count), balance (stock), revenue (sales amount RUB), days_in_stock, turnover_days, lost_profit, category_position.

Operators: GTE, LTE, GT, LT, EQ, NOT_EQ, BETWEEN (requires value2 as the upper bound).

调用方式

  • API 端点POST /mpstats/ozon/brandProducts(完整参数/响应/错误码见 references/api.md
  • Python 脚本python scripts/mpstats_ozon_brand_products.py '' [--inline]
  • 成本约束:本工具会消耗积分;同一会话同一参数组合默认只调用一次,脚本带 24h 本地缓存。失败/空结果不得自动换关键词、翻页或改邮编连续试探;需要继续检索时先向用户说明会产生额外消耗。

输出策略(脚本默认行为)

  • 始终将完整响应写入 /linkfox///data/linkfox-mpstats-ozon-brand-products-.json 为脚本执行时的工作目录,在 Claude Code 里即当前项目目录; 取自环境变量 SESSION_ID,按用户任务自动聚合;禁止写入 /tmp,当前目录不可写则报错)
  • 响应体 ≤ 8 KB:落盘后把完整 JSON 打印到 stdout
  • 响应体 > 8 KB:落盘后 stdout 只输出摘要(顶层字段、常见计数如 total/costToken、最大列表字段的长度 + 前 3 条样本)
  • --inline 强制全量打印到 stdout(同样落盘)

读数据建议:先看摘要判断是否足够;需要具体字段时优先用 jqConvertFrom-Json 从保存的 json 文件按需抽取,避免整份 JSON 进入上下文。

解决认证和积分问题

发生以下异常情况时,采用 references/onboarding.md 引导解决问题:

异常情况

  • 未配置API Key:环境变量未配置 LINKFOX_AGENT_API_KEY,也未配置 LINKFOXAGENT_API_KEY
  • 响应401或402状态码
  • 响应提示积分或余额不足:消息含"积分余额不足/计费不足/余额不足/quota exceeded/insufficient balance/套餐到期/需充值/请充值",或类似含义的内容。

Usage Examples

1. Top-50 by sales for brand adidas

{
  "brandName": "adidas",
  "sortField": "sales",
  "sortDirection": "desc",
  "pageSize": 50
}

2. High-rating, mid-price filter

{
  "brandName": "Xiaomi",
  "filters": [
    {"field": "rating", "op": "GTE", "value": 4.5},
    {"field": "final_price", "op": "BETWEEN", "value": 1000, "value2": 5000}
  ],
  "sortField": "revenue",
  "sortDirection": "desc"
}

3. USD-converted output

{
  "brandName": "Nike",
  "currency": "USD",
  "sortField": "revenue"
}

4. Include FBS + only in-stock items

{
  "brandName": "adidas",
  "includeFbs": true,
  "filters": [{"field": "balance", "op": "GT", "value": 0}]
}

5. Lost-profit hunters (out-of-stock pain)

{
  "brandName": "Nike",
  "filters": [{"field": "lost_profit", "op": "GTE", "value": 100000}],
  "sortField": "lost_profit",
  "sortDirection": "desc"
}

Display Rules

  1. Compact brand table — key columns: productId, title, price, monthlySalesUnits, monthlySalesRevenue, rating, reviewCount, balance, turnoverDays, lostProfit.
  2. Revenue share contextrevenueSharePercent is the SKU's share within this brand result set, 0-100; clarify the base when presenting.
  3. Currency labeling — always state the currency in the table header; if currency was overridden, note "已按 USD 换算".
  4. Russian titles — preserve original; translate on user request.
  5. Pagination — report total and guide the user to next page or narrower filters when total exceeds the returned page.
  6. No business advice — present the data; don't project future sales from a snapshot.

Important Limitations

  • Exact brand-name match — no fuzzy search; typos return empty results. Verify via mpstats-ozon-product-search if unsure.
  • Page cap — max 100 rows per page; paginate for larger brands.
  • Date windowendDate cannot be today or a future date (T-1 data).
  • Currency conversion — server-side; historical rates may differ slightly from the user's reference rate.
  • Russian-only titles — translate only when asked.

User Expression & Scenario Quick Reference

Applicable — Brand-scoped Ozon product metrics:

User SaysScenario
"Show me adidas's top-selling Ozon SKUs"Brand bestseller drill
"What does Xiaomi sell on Ozon, sorted by revenue"Brand revenue structure
"Which brand-X SKUs have rating ≥4.5 and stock >0"Brand quality filter
"Are brand-X's stockouts causing big lost profit"Lost-profit hunter
"Convert brand-X's Ozon sales to USD"Currency-normalized audit

Not applicable — Needs beyond brand drill-down:

  • Unknown exact brand name → first use mpstats-ozon-product-search
  • Category-level comparison across brands → use mpstats-ozon-category-products
  • Seller-scoped analysis → use mpstats-ozon-seller-products
  • Single-SKU time-series → use mpstats-ozon-product-trend
  • Wildberries / other Russian marketplaces → not covered

Boundary judgment: Use this skill when the question centers on one brand and you want the per-SKU rollup under it. For "which brand dominates category X" use category drill-down and compare brand rows server-side.

积分消耗规则

按动态规则计费:消耗积分 = 12。列表为空返回 0

重要:本技能的服务按倍数动态计算,可能一次性消耗大量积分,必须提醒用户,由用户决定是否继续。

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 店铺展示完全一致,否则返回空。建议先用 mpstats-ozon-product-search 查到正确写法再传入。
销售额能换成美元或人民币吗?
可以。设置 currency 参数(如 USD、EUR、CNY)由服务端换算货币字段;历史汇率与外部参考汇率可能略有差异,也可用 currencyRate 覆盖默认汇率。
多条筛选条件是怎么组合的?
filters 数组里的条件按 AND 组合。运算符支持 GTE、LTE、GT、LT、EQ、NOT_EQ;BETWEEN 需要同时给出 value 和 value2 作为上下界。
是否包含 FBS 卖家自发货数据?
默认仅 FBO 数据。把 includeFbs 设为 true,会把 FBS 的库存与销售合并到结果中。
调用成本和限制有哪些?
每次调用默认消耗 12 积分,列表为空返回 0。每页最多 100 行,品牌 SKU 多需分页;endDate 不能是当天或未来日期(T-1 数据)。

相关技能

按俄语类目路径拉取 Ozon 全量商品,返回销量、销售额、价格、评分、库存、周转等指标。

16 次安装

按 Ozon 卖家 ID 下钻该店铺全部 SKU 的销量、销售额、价格、评分、库存、周转、损失利润等指标。

16 次安装

MPSTATS Ozon 俄罗斯站单个 SKU 的分日时间序列表现。按日期粒度返回一个 Ozon 商品的销量、价格、库存、评分等指标,可选附带搜索位次/可见性数据,用于验证增长趋势、季节性、异常波动。当用户提到 Ozon 趋势、Ozon 销量趋势、Ozon 价格走势、Ozon 分日数据、Ozon 库存走势、Ozon 搜索位次、Ozon 商品历史、MPSTATS trend, Ozon daily performance, Ozon time series, Ozon search visibility, Russian marketplace product history 时触发此技能。即使用户未明确说"MPSTATS",只要意图是看某个 Ozon 商品的分日/时间段走势,也应触发此技能。

15 次安装

单次最多 100 个 Ozon(俄罗斯)SKU,批量拉取价格、销量、库存、评分、缺货损失等完整商品卡。

16 次安装

MPSTATS Ozon 俄罗斯站商品搜索与反查。按俄语关键词或 SKU 在 MPSTATS 数据库中检索 Ozon 商品,返回商品 ID、标题、品牌和卖家信息,是 Ozon 选品与竞品链路的起点。当用户提到 Ozon 选品、Ozon 商品搜索、俄罗斯电商选品、Ozon 关键词搜索、Ozon SKU 查询、MPSTATS Ozon、Ozon product search, MPSTATS Ozon, Russian marketplace, Ozon SKU lookup, Ozon keyword search 时触发此技能。即使用户未明确提到"MPSTATS",只要其意图是在 Ozon 俄罗斯站按关键词或 SKU 发现或反查商品,也应触发此技能。

19 次安装

Seerfar Ozon 商品报表搜索:按销量、销售额、销量/销售额增长率、购物车转化率、下单转化率、价格、评分、评论数、QA数、变体数、浏览量、毛利率、退货取消率、广告费用份额、重量/体积、上架时间、品牌、卖家、配送方式、标签等多维指标筛选 Ozon 商品,返回每个商品的 SKU、标题、价格(卢布)、销量、销售额、损失销售额、转化率、评分、评论、品牌、卖家、配送方式、上架天数/月数等完整商品报表字段,用于 Ozon 选品、竞品商品分析、热销商品挖掘、价格带/转化带筛选。当用户提到 Ozon 商品报表、Ozon 选品、Ozon 商品筛选、Ozon 商品分析、Ozon 热销商品、Ozon 竞品商品分析、Ozon product report, Ozon product screener, filter Ozon products by sales, Ozon best-seller mining, Seerfar Ozon 商品报表时触发此技能。即使用户未明确提到"Seerfar",只要其意图是按多指标筛选 Ozon 商品并查看商品级报表,也应触发此技能。