linkfox-mpstats-ozon-product-detail
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseMPSTATS Ozon Product Detail (Batch)
MPSTATS Ozon商品详情(批量查询)
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.
本技能通过MPSTATS批量拉取一个或多个Ozon(俄罗斯站)SKU的完整商品卡片信息。返回字段包括价格、Ozon Card价、折扣、评分、评论数、库存、月销量、月销售额、损失利润、潜在收入、首次上架日期、图片等。
Core Concepts
核心概念
Batch semantics: Pass up to 100 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.
productIdsFulfillment model per SKU: Each product card carries :
deliveryScheme- — Fulfillment by Ozon (stock in Ozon warehouses)
FBO - — Fulfillment by Seller (seller-shipped)
FBS
Pass to allow FBS SKUs and FBS-scoped metrics into the response; (or omitted) keeps the result FBO-centric. This switch applies to the whole batch.
includeFbs: truefalsePrevious-period comparison: The card includes / — sales and revenue from the equal-length period immediately before — ready for MoM / period-over-period diffs without extra calls.
previousSalesUnitspreviousRevenue[startDate, endDate]Revenue potential: projects what the SKU could have earned if it had been in stock every day of the window; compare with to quantify stock-out drag, together with / .
revenuePotentialmonthlySalesRevenuelostProfitlostProfitPercentDate window: / define the period for all period-aggregated metrics. Latest selectable date is yesterday (T-1); today and future dates are rejected.
startDateendDate批量语义:单次调用最多传入100个。服务器会并发处理请求,并自动重试失败的SKU一次;允许部分成功,因此返回结果中存在成功与失败的混合列表属于正常情况。
productIds单SKU履约模型:每个商品卡片包含字段:
deliveryScheme- — 由Ozon履约(库存存放于Ozon仓库)
FBO - — 由卖家履约(卖家自行发货)
FBS
设置可在响应中包含FBS SKU及对应指标;设置为(或省略该参数)则仅返回FBO相关数据。该开关对整个批量查询生效。
includeFbs: truefalse往期对比:商品卡片包含/字段,即周期之前等长时间段的销量与收入数据,无需额外调用即可直接用于月环比/同期对比分析。
previousSalesUnitspreviousRevenue[startDate, endDate]收入潜力:字段用于预测该SKU在统计周期内若全程有库存可获得的收入;与对比可量化缺货带来的影响,结合/字段分析效果更佳。
revenuePotentialmonthlySalesRevenuelostProfitlostProfitPercent日期范围:/定义所有周期聚合指标的统计时段。可选的最晚日期为昨日(T-1);今日及未来日期会被拒绝。
startDateendDateParameters
参数说明
| Parameter | Type | Required | Description |
|---|---|---|---|
| productIds | array<integer|string> | yes | Ozon SKU list, up to 100 per call |
| startDate | string | no | Stats window start, |
| endDate | string | no | Stats window end, |
| includeFbs | boolean | no | |
| 参数 | 类型 | 是否必填 | 描述 |
|---|---|---|---|
| productIds | array<integer|string> | 是 | Ozon SKU列表,单次调用最多100个 |
| startDate | string | 否 | 统计周期起始日期,格式为 |
| endDate | string | 否 | 统计周期结束日期,格式为 |
| includeFbs | boolean | 否 | 设置为 |
API 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_product_detail.py本工具调用LinkFox工具网关API。调用规范、请求参数、响应结构及错误码请参考。您也可直接执行进行临时查询。
references/api.mdscripts/mpstats_ozon_product_detail.pyUsage Examples
使用示例
1. Single-SKU detail
json
{"productIds": [1786874757]}2. Batch lookup with period
json
{
"productIds": [1786874757, 151623766, 142257239],
"startDate": "2025-03-01",
"endDate": "2025-03-31",
"includeFbs": true
}3. FBO-only snapshot
json
{"productIds": [1786874757, 151623766], "includeFbs": false}4. SKUs discovered upstream — full card
json
{"productIds": [<list from mpstats-ozon-product-search>]}1. 单个SKU详情查询
json
{"productIds": [1786874757]}2. 指定周期的批量查询
json
{
"productIds": [1786874757, 151623766, 142257239],
"startDate": "2025-03-01",
"endDate": "2025-03-31",
"includeFbs": true
}3. 仅返回FBO数据的快照查询
json
{"productIds": [1786874757, 151623766], "includeFbs": false}4. 上游搜索得到的SKU全量卡片查询
json
{"productIds": [<来自mpstats-ozon-product-search的SKU列表>]}How to Chain with Other Ozon Skills
与其他Ozon技能的联动方式
- Search → detail: Use to resolve a keyword / brand / seller into
mpstats-ozon-product-searchs, then pass them here for full metrics.productId - 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 - Detail vs drill-downs: When the input dimension is a brand / category / seller (not a SKU list), prefer /
brand-products/category-products— they already return aggregated metrics per SKU under that dimension.seller-products
- 搜索→详情:使用通过关键词/品牌/卖家获取
mpstats-ozon-product-search,再传入本工具获取完整指标数据。productId - 详情vs趋势:本接口返回的是单SKU的周期聚合数据;若需单个SKU的逐日时间序列数据,请使用。
mpstats-ozon-product-trend - 详情vs细分分析:当输入维度为品牌/品类/卖家(而非SKU列表)时,优先使用/
brand-products/category-products,这些工具已返回对应维度下每个SKU的聚合指标。seller-products
Display Rules
展示规则
- Compact table — lead with ,
productId,title,price,monthlySalesUnits,monthlySalesRevenue,rating,reviewCount,balance,deliveryScheme. PullfirstDate/revenuePotential/lostProfitin when the user asks about stock-out impact.lostProfitPercent - Currency — Ozon native currency is RUB; the field carries the symbol. Do not silently relabel.
currency - Partial success — the response carries /
successCount/failedCount; whenfailures, list the failedfailedCount > 0s fromproductIdto the user rather than silently dropping them.failures - Period-over-period — when both current and fields are present, render them side-by-side or as diff; don't report a single-period number as "trend".
previous* - With-stock vs all-days — /
salesPerDayWithStockonly count days that had inventory; distinguish from the plaindailySalesRevenueWithStock/salesPerDay.dailySalesRevenue - Delivery model — prefer the per-SKU value over assuming FBO; remind users when a batch mixes FBO and FBS.
deliveryScheme - No business advice — present data; do not extrapolate "this SKU is worth selling" without a wider analysis.
- 紧凑表格 — 优先展示、
productId、title、price、monthlySalesUnits、monthlySalesRevenue、rating、reviewCount、balance、deliveryScheme字段。当用户询问缺货影响时,再补充展示firstDate/revenuePotential/lostProfit字段。lostProfitPercent - 货币单位 — Ozon默认货币为RUB;字段会携带货币符号,请勿擅自修改。
currency - 部分成功处理 — 响应结果包含/
successCount/failedCount字段;当failures时,需将failedCount > 0中的失败failures告知用户,而非直接忽略。productId - 同期对比 — 当同时存在当前周期与字段数据时,需将二者并列展示或呈现差值;不得将单周期数据作为“趋势”报告。
previous* - 有库存日vs全周期 — /
salesPerDayWithStock仅统计有库存的日期;需与普通的dailySalesRevenueWithStock/salesPerDay字段区分开。dailySalesRevenue - 履约模型 — 优先使用单SKU的值,而非默认假设为FBO;当批量结果中同时包含FBO和FBS数据时,需提醒用户。
deliveryScheme - 不提供业务建议 — 仅展示数据;未经全面分析,不得给出“该SKU值得售卖”这类推断。
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 data — must not be today or future.
endDate - 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. UseisFbs/brand-products/category-productsif those are needed.seller-products - No translation — titles are returned in Russian; translate on demand when presenting to Chinese / English users.
- 100个SKU批量上限 — 若输入列表超过该数量,请拆分后多次调用;Agent需自动分页处理。
- 仅支持Ozon — 本工具不覆盖Wildberries或其他俄罗斯电商平台。
- T-1数据限制 — 不能为今日或未来日期。
endDate - FBS数据覆盖有限 — 部分品类的FBS数据覆盖不全;若输入以FBS SKU为主,返回的商品卡片可能信息较稀疏。
- 字段集与品牌/卖家工具不同 — 本接口不返回、
brandId、country、category/minPrice/maxPrice、averagePrice、balanceFbs、frozenStocks、warehousesCount/daysInSite/daysInStock、turnoverDays/position/categoryPosition、revenueSharePercent字段。若需要这些字段,请使用isFbs/brand-products/category-products工具。seller-products - 无自动翻译 — 商品标题以俄语返回;向中文/英文用户展示时需按需翻译。
User Expression & Scenario Quick Reference
用户表述与场景速查
Applicable — Per-SKU Ozon card lookup:
| User Says | Scenario |
|---|---|
| "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.
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.
适用场景 — 按SKU查询Ozon商品卡片:
| 用户表述 | 场景 |
|---|---|
| "帮我拉取这些SKU的Ozon详情" | 批量商品卡片查询 |
| "Ozon SKU 1786874757的价格/评分/库存是多少" | 单个SKU卡片查询 |
| "竞品的Ozon listings,给我销量和评分数据" | 竞品卡片审核 |
| "对比这组SKU的FBO与FBO+FBS指标" | 履约模型对比 |
不适用场景 — 超出单SKU卡片查询需求:
- 基于关键词的商品发现 → 使用
mpstats-ozon-product-search - 单个SKU的逐日时间序列数据 → 使用
mpstats-ozon-product-trend - 商品文案/评论/图片的深度分析(超出URL范围) → 不在本技能范围内
- 带筛选条件的品牌/品类/卖家细分分析 → 使用对应细分分析技能
边界判断:若用户已有SKU列表,且需要单SKU的销量/价格/库存/评分数据,则使用本技能。若用户尚未获取SKU,需先引导至搜索或细分分析技能。
反馈机制:
当出现以下任意情况时,需自动检测并通过Feedback API提交反馈:
- 本技能描述的功能或用途与实际行为不符
- 技能返回结果与用户意图不匹配
- 用户表达对本技能的不满或赞赏
- 任何您认为可优化的内容
请按照中的说明调用反馈API,请勿打断用户操作流程。
references/api.md如需更多高质量、专业的跨境电商技能,请访问LinkFox Skills。