Coding

MPSTATS-Ozon商品详情

Try it

Batch-fetch up to 100 Ozon (Russia) SKUs with price, sales, stock, rating and period-over-period metrics per call.

What it does

Pulls a full product card for up to 100 Ozon SKUs in one call via MPSTATS. Each card includes price, Ozon Card price, discount, rating, review count, stock, monthly sales units and revenue, revenue potential, lost profit, first listing date, image, and a per-SKU FBO/FBS delivery scheme. Period windows (latest endDate = yesterday, T-1) ship with previous-period sales and revenue fields for direct MoM diffs. Currency is RUB; titles remain in Russian.

When to use it

  • Batch-auditing competitor Ozon listings (price, rating, sales)
  • Comparing FBO vs FBS metrics on the same SKU set
  • Quantifying stock-out drag with revenuePotential and lostProfit
  • Period-over-period sales diffs on a known Ozon SKU list

The skill document

MPSTATS Ozon Product Detail (Batch)

This skill batch-fetches the full product card for one or more Ozon (Russia) SKUs via MPSTATS. Returned fields include price, Ozon Card price, discount, rating, reviews, stock, monthly sales units, monthly sales revenue, lost profit, potential revenue, first listing date, image, and more.

Core Concepts

Batch semantics: Pass up to 100 productIds in a single call. The server fans out concurrently and automatically retries each failed SKU once; partial success is allowed, so a mixed list is normal.

Fulfillment model per SKU: Each product card carries deliveryScheme:

  • FBO — Fulfillment by Ozon (stock in Ozon warehouses)
  • FBS — Fulfillment by Seller (seller-shipped)

Pass includeFbs: true to allow FBS SKUs and FBS-scoped metrics into the response; false (or omitted) keeps the result FBO-centric. This switch applies to the whole batch.

Previous-period comparison: The card includes previousSalesUnits / previousRevenue — sales and revenue from the equal-length period immediately before [startDate, endDate] — ready for MoM / period-over-period diffs without extra calls.

Revenue potential: revenuePotential projects what the SKU could have earned if it had been in stock every day of the window; compare with monthlySalesRevenue to quantify stock-out drag, together with lostProfit / lostProfitPercent.

Date window: startDate / endDate define the period for all period-aggregated metrics. Latest selectable date is yesterday (T-1); today and future dates are rejected.

Parameters

ParameterTypeRequiredDescription
productIdsarrayyesOzon SKU list, up to 100 per call
startDatestringnoStats window start, YYYY-MM-DD; latest = yesterday
endDatestringnoStats window end, YYYY-MM-DD; latest = yesterday
includeFbsbooleannotrue to include FBS data; false = FBO-only

调用方式

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

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

  • 始终将完整响应写入 /linkfox///data/linkfox-mpstats-ozon-product-detail-.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. Single-SKU detail

{"productIds": [1786874757]}

2. Batch lookup with period

{
  "productIds": [1786874757, 151623766, 142257239],
  "startDate": "2025-03-01",
  "endDate": "2025-03-31",
  "includeFbs": true
}

3. FBO-only snapshot

{"productIds": [1786874757, 151623766], "includeFbs": false}

4. SKUs discovered upstream — full card

{"productIds": []}

How to Chain with Other Ozon Skills

  1. Search → detail: Use mpstats-ozon-product-search to resolve a keyword / brand / seller into productIds, then pass them here for full metrics.
  2. Detail vs trend: This endpoint is a period aggregate per SKU; for day-by-day time-series on a single SKU, use mpstats-ozon-product-trend.
  3. Detail vs drill-downs: When the input dimension is a brand / category / seller (not a SKU list), prefer brand-products / category-products / seller-products — they already return aggregated metrics per SKU under that dimension.

Display Rules

  1. Compact table — lead with productId, title, price, monthlySalesUnits, monthlySalesRevenue, rating, reviewCount, balance, deliveryScheme, firstDate. Pull revenuePotential / lostProfit / lostProfitPercent in when the user asks about stock-out impact.
  2. Currency — Ozon native currency is RUB; the currency field carries the symbol. Do not silently relabel.
  3. Partial success — the response carries successCount / failedCount / failures; when failedCount > 0, list the failed productIds from failures to the user rather than silently dropping them.
  4. Period-over-period — when both current and previous* fields are present, render them side-by-side or as diff; don't report a single-period number as "trend".
  5. With-stock vs all-dayssalesPerDayWithStock / dailySalesRevenueWithStock only count days that had inventory; distinguish from the plain salesPerDay / dailySalesRevenue.
  6. Delivery model — prefer the per-SKU deliveryScheme value over assuming FBO; remind users when a batch mixes FBO and FBS.
  7. No business advice — present data; do not extrapolate "this SKU is worth selling" without a wider analysis.

Important Limitations

  • 100-SKU batch cap — split larger input lists and call multiple times; the Agent must paginate.
  • Ozon-only — this tool does not cover Wildberries or other Russian marketplaces.
  • T-1 dataendDate must not be today or future.
  • FBS coverage — some categories have partial FBS coverage; if the input set is FBS-heavy, expect sparser cards.
  • Field set differs from brand/seller — this endpoint does not return brandId, country, category, minPrice / maxPrice / averagePrice, balanceFbs, frozenStocks, warehousesCount, daysInSite / daysInStock / turnoverDays, position / categoryPosition / revenueSharePercent, isFbs. Use brand-products / category-products / seller-products if those are needed.
  • No translation — titles are returned in Russian; translate on demand when presenting to Chinese / English users.

User Expression & Scenario Quick Reference

Applicable — Per-SKU Ozon card lookup:

User SaysScenario
"Pull Ozon details for these SKUs"Batch card fetch
"What's the price / rating / stock of Ozon SKU 1786874757"Single-SKU card
"Competitor's Ozon listings, give me sales & rating"Competitor card audit
"Compare FBO vs FBO+FBS metrics for this SKU set"Fulfillment-model comparison

Not applicable — Needs beyond per-SKU card:

  • Keyword-based discovery → use mpstats-ozon-product-search
  • Day-by-day time-series for one SKU → use mpstats-ozon-product-trend
  • Listing copy / reviews / images analysis beyond URL → out of scope
  • Brand / category / seller drill-down with filters → use the matching drill-down skill

Boundary judgment: If the user already has a SKU list and wants per-SKU sales / price / stock / rating, this is the skill. If they don't yet have SKUs, route through the search or drill-down skills first.

积分消耗规则

按动态规则计费:消耗积分 = 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.

Related skills

Pull every SKU under an Ozon seller ID with sales, revenue, price, rating, stock, turnover, and lost-profit metrics.

16 installs

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 installs

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 installs

List every Ozon brand SKU with sales, revenue, price, rating, stock, and turnover for competitor and structure analysis.

15 installs

Seerfar Ozon 商品详情查询:按 Ozon 商品 SKU 拉取单个商品的完整详情,返回标题、价格(卢布)、评分、评论数、QA数、统计窗口内总销量与日均销量、销售额、库存、类目排名、每日销量趋势、品牌、卖家、配送方式(FBO/FBS/OZON)、重量、上架时间/天数/月数等。用于单品深度分析、竞品商品拆解、Ozon 选品评估、Listing 诊断、销量趋势与类目排名跟踪。当用户提到 Ozon 商品详情、Ozon 单品分析、Ozon SKU 查询、竞品商品数据、Ozon 销量趋势、Ozon 类目排名、Ozon 库存、Ozon 上架时间、Seerfar Ozon 商品搜索、Ozon product detail, Ozon SKU lookup, single product analysis, competitor product teardown, Ozon sales trend, category rank 时触发此技能。即使用户未明确提到"Seerfar",只要其意图是查看某个 Ozon 商品的详细数据,也应触发此技能。