← 返回
未分类

Mpstats Ozon Product Search

MPSTATS Ozon 俄罗斯站商品搜索与反查。按俄语关键词、SKU、品牌名或卖家名在 MPSTATS 数据库中检索 Ozon 商品,返回商品 ID、标题、品牌和卖家信息,是 Ozon 选品与竞品链路的起点。当用户提到 Ozon 选品、Ozon 商品搜索、俄罗斯电商选品、Ozon 关键词搜索、Ozon SKU...
MPSTATS Ozon 俄罗斯站商品搜索与反查。通过俄语关键词、SKU、品牌或卖家名在 MPSTATS 数据库检索,返回商品ID、标题、品牌和卖家信息,为 Ozon 选品与竞品链路起点。
linkfox-ai linkfox-ai 来源
未分类 clawhub v1.0.1 2 版本 99769.1 Key: 无需
★ 0
Stars
📥 432
下载
💾 0
安装
2
版本
#latest

概述

MPSTATS Ozon Product Search

This skill searches Ozon (Russia) products in the MPSTATS analytics database by Russian keyword, SKU list, brand name, or seller name. It is the entry point for Ozon product discovery and competitor lookup — downstream drill-downs (brand/category/seller/detail/trend) typically start from the IDs returned here.

Core Concepts

MPSTATS Ozon coverage: Ozon is Russia's largest general-category marketplace. MPSTATS indexes Ozon product listings and sales history. This endpoint returns the basic identity card only — 10 fields: productId / title / productPageUrl / imageUrl / brand / brandId / sellerName / sellerId plus sourceType / sourceTool. Per-SKU price / sales / rating / stock / turnover / ranking are not returned here — the backend OzonProductSearchItem DTO is intentionally narrow. For those metrics, chain into mpstats-ozon-product-detail (batch full card, 36 fields) or the brand/category/seller-products drill-downs (39 fields).

Language requirement: Keywords, brand names, and seller names must be in Russian (Cyrillic) — or the Latin-script form actually used on the Ozon storefront (e.g., adidas). If the user supplies an English or Chinese keyword, translate it to Russian first and note the translation.

At-least-one input rule: The input schema marks all four filters as optional, but the tool's business rule requires at least one of keyword / productIds / brandNames / sellerNames to be supplied. The four can be combined to narrow results.

Parameters

ParameterTypeRequiredDescription
----------------------------------------
keywordstringconditionalRussian search keyword, e.g., кроссовки (sneakers)
productIdsarraystring>conditionalOzon SKU list
brandNamesarrayconditionalBrand display names (Russian or Latin)
sellerNamesarrayconditionalSeller display names (Russian)
startDatestringnoStats window start, YYYY-MM-DD; defaults to one year ago
endDatestringnoStats window end, YYYY-MM-DD; defaults to yesterday, cannot be today or future
pageintegernoPage number, starts at 1
pageSizeintegernoRows per page, 1-100, default 100

At least one of keyword / productIds / brandNames / sellerNames must be supplied.

API Usage

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_product_search.py directly for ad-hoc queries.

Usage Examples

1. Keyword search — sneakers in Russian

{"keyword": "кроссовки", "pageSize": 50}

2. SKU batch reverse lookup

{"productIds": [1786874757, 151623766, 142257239]}

3. Brand-scoped discovery

{"brandNames": ["adidas", "Xiaomi"], "keyword": "наушники"}

4. Seller-scoped discovery

{"sellerNames": ["ООО Ромашка"], "pageSize": 100}

5. Dated window for period-specific search

{"keyword": "футболка", "startDate": "2025-02-01", "endDate": "2025-02-28"}

How to Chain with Other Ozon Skills

  1. Keyword → drill-down: Search → pick productId → call mpstats-ozon-product-detail (batch metrics) or mpstats-ozon-product-trend (single-SKU time-series).
  2. Brand discovery → brand drill-down: Use this skill to confirm the exact brand display name, then call mpstats-ozon-brand-products for full sales / stock / rating metrics.
  3. Seller scouting → seller drill-down: Confirm the seller via this skill, read the sellerId from the result, then call mpstats-ozon-seller-products for the seller's full SKU map.

Display Rules

  1. Lead with identity columns — this endpoint returns only 10 identity fields. Headline the table with productId, title, brand, sellerName; include productPageUrl / imageUrl as secondary columns. Do not add price / sales / rating / stock columns — they are not in the response.
  2. Russian titles — preserve the original Russian title; optionally offer an English or Chinese translation on user request.
  3. Pagination — when total exceeds the page size, tell the user the total count and suggest the next page or a narrower keyword.
  4. Route to drill-downs for any business metric — business metrics are never in this response. If the user asks for sales / price / rating / stock / turnover / ranking, always route to mpstats-ozon-product-detail (single or batch) or the *-products drill-downs. Do not fabricate or estimate from identity fields.
  5. Error handling — when code / errcode is non-200, explain the reason from msg / errmsg and suggest adjusting inputs (supply at least one of the four filters, use Russian, narrow date range).

Important Limitations

  • At least one filter required — empty payloads are rejected by the tool's business rule even though required is empty in inputSchema.
  • Russian / Latin only — non-Russian keywords generally return empty results.
  • Date rangeendDate cannot be today or a future date; data is T-1.
  • Result cap per pagepageSize max is 100; paginate for larger sets.
  • No business metrics — price / sales / rating / stock / turnover / ranking are not in this endpoint's response at all. The backend OzonProductSearchItem DTO declares exactly 10 identity fields. This is a hard contract, not a sparse payload — do not assume missing metric fields could be filled in by re-calling with different dates.

User Expression & Scenario Quick Reference

Applicable — Ozon product discovery / identity resolution:

User SaysScenario
---------------------
"Search Ozon for sneakers / headphones / ..."Keyword discovery
"I have a list of Ozon SKUs, pull their names"Batch SKU reverse lookup
"What does brand X sell on Ozon"Brand-scoped candidate listing
"What does seller Y sell on Ozon"Seller-scoped candidate listing
"Translate this keyword to Russian and search Ozon"Cross-language discovery

Not applicable — Needs beyond discovery:

  • Reliable per-SKU sales / revenue / stock / rating metrics → use mpstats-ozon-product-detail (batch card) or the *-products drill-down skills.
  • Time-series trend for a single SKU → use mpstats-ozon-product-trend.
  • Wildberries or other non-Ozon Russian marketplaces → not covered here.
  • Category-tree navigation / Russian category path lookup → use mpstats-ozon-category-products with a known path.

Boundary judgment: If the user wants to find or identify Ozon products, start here. If they already have an ID or a dimension (brand / category / seller) and want metrics under it, go to the corresponding drill-down skill directly.

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.

版本历史

共 2 个版本

  • v1.0.1 当前
    2026-05-21 13:32 安全
  • v1.0.0
    2026-05-08 04:04 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

suspicious
查看报告

🔗 相关推荐

business-ops

Stripe

byungkyu
Stripe API 集成,支持托管 OAuth,实现对客户、订阅、发票、产品、价格和支付的可写金融集成。
★ 27 📥 25,944
business-ops

Trello

steipete
使用 Trello REST API 管理看板、列表和卡片
★ 162 📥 41,216
business-ops

Discord

steipete
当需要通过discord工具控制Discord时使用:发送消息、添加反应、发布或上传表情包、上传表情、创建投票、管理帖子/置顶/搜索、获取权限或成员/角色/频道信息,或在Discord私信或频道中处理管理操作。
★ 78 📥 37,976