AI студия Владимира Ломтева
УСЛУГИПРОЕКТЫСТАТЬИБАЗА ЗНАНИЙМаркетплейсПолезные сервисы

Оставьте заявку,
чтобы обсудить проект

Напишите ваш вопрос, не забудьте указать телефон. Мы перезвоним и все расскажем.

Контакты

Москва

Работаем по всей России
и миру (онлайн)

+7 (999) 760-24-41

Ежедневно с 9:00 до 21:00

lamooof@gmail.com

По вопросам сотрудничества

TelegramWhatsApp

Есть предложение?

Напишите нам в мессенджеры

© 2025 AI студия Владимира Ломтева

Политика конфиденциальностиСогласие на обработку ПДн|ИНН 623412173261
    Ozon: товары продавца — Скилл для ИИ-агентов | AI Рассвет
    Маркетплейс/Скилл/Ozon: товары продавца
    Скилл

    Ozon: товары продавца

    MPSTATS Ozon Russia seller drill down product list by seller ID. Returns all SKUs under a seller with complete metrics: sales, revenue, price, rating, stock, turnover, lost revenue, supporting mult...

    Скиллы для маркетинга#GitHub#Ozon#nexscope-ai/nexscope-ecommerce-skills
    Скачивания
    0
    В избранном
    0
    Комментарии
    0
    Просмотры
    2

    Установить скилл

    Добавьте инструмент одной командой или скачайте проверенный архив версии.

    npx skills add nexscope-ai/nexscope-ecommerce-skills --skill ecommerce-ozon-seller-products
    Скачать ZIP
    Версия
    1.0.0+7fb4686e62c4
    Автор
    Владимир Ломтев
    Исходный код

    Как установить

    1. 1Скопируйте команду из блока установки.
    2. 2Запустите её в терминале из каталога проекта.

    Документация

    MPSTATS Ozon Seller Products

    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.

    Core Concepts

    Seller ID, not name: sellerId must be a numeric string — the sellerId 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 ecommerce-ozon-product-search (seller-filtered) and read sellerId from the result.

    Filters & ops: Same AND-combined numeric filter model as brand-products and category-products. See Filter Reference.

    Currency: Default RUB; override with currency / currencyRate for USD / EUR / CNY views.

    FBO / FBS: includeFbs: true folds FBS into the numbers; false keeps FBO-only.

    Parameters

    Parameter Type Required Description
    sellerId string yes Ozon seller ID as numeric string, e.g. "3628678"
    startDate string no Stats window start, YYYY-MM-DD; latest = yesterday
    endDate string no Stats window end, YYYY-MM-DD; latest = yesterday
    page integer no Page number, starts at 1
    pageSize integer no Rows per page, 1-100, default 100
    sortField string no snake_case column (sales, revenue, ...)
    sortDirection string no asc / desc
    currency string no Currency code, default RUB
    currencyRate integer no Custom rate for non-default currency
    includeFbs boolean no Include FBS data
    filters array no Numeric filter list

    Filter Reference

    Each filters entry: {"field": "<snake_case>", "op": "<OP>", "value": <num>, "value2": <num?>}.

    Common fields: sales, final_price, rating, comments, balance, revenue, days_in_stock, turnover_days, lost_profit, category_position.

    Operators: GTE, LTE, GT, LT, EQ, NOT_EQ, BETWEEN (requires value2).

    Calling the Tool

    • API Endpoint: /mpstats/ozon/sellerProducts (full parameters/responses/error codes in references/api.md)
    • Python Script: python scripts/ozon_seller_products.py '<JSON params>' [--inline]
    • Cost constraint: This tool consumes credits. Within the same session and same parameter combination, it defaults to a single call with a 24-hour local cache. Do not automatically retry with different keywords, pagination, or parameters on failure/empty results. Inform the user of additional credit consumption before continuing retrieval.

    Output strategy (script default behavior):

    • Always write the full response to <cwd>/nexscope/<YYYY-MM-DD>/<session>/data/ecommerce-ozon-seller-products-<timestamp>.json (<cwd> is the working directory when the script executes, which in Claude Code is the current project directory; <session> is taken from the SESSION_ID environment variable, automatically grouped by user task; do not write to /tmp; error if the current directory is not writable)
    • Response body <= 8 KB: write to disk then print full JSON to stdout
    • Response body > 8 KB: write to disk then print only a summary to stdout (top-level fields, common counts like total/costToken, length of the largest list field + first 3 samples)
    • Add --inline to force full output to stdout (still writes to disk)

    Reading data: Check the summary first to determine if it is sufficient. When specific fields are needed, use jq or ConvertFrom-Json to extract from the saved JSON file as needed, avoiding loading the entire JSON into context.

    Authentication & Credits

    If you encounter authentication or credit issues:

    Error conditions

    • API Key not configured: The NEXSCOPE_API_KEY environment variable is not set.
    • HTTP 401 or 402 status code
    • Insufficient credits/balance: Response message indicates credit balance exhausted, quota exceeded, subscription expired, or recharge required.

    Resolution steps

    1. Set the NEXSCOPE_API_KEY environment variable with a valid API key.
    2. If credits are insufficient, visit https://www.nexscope.ai/pricing?co-from=skillNS to top up your balance.
    3. For onboarding and setup guidance, refer to https://www.nexscope.ai/help/skills-external-access?co-from=skillNS

    Usage Examples

    1. Seller's top-100 by sales

    {
      "sellerId": "3628678",
      "sortField": "sales",
      "sortDirection": "desc",
      "pageSize": 100
    }
    

    2. Store's revenue top-20

    {
      "sellerId": "3628678",
      "sortField": "revenue",
      "sortDirection": "desc",
      "pageSize": 20
    }
    

    3. High-turnover star products

    {
      "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

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

    5. USD-converted store audit

    {
      "sellerId": "3628678",
      "currency": "USD",
      "sortField": "revenue",
      "sortDirection": "desc"
    }
    

    Display Rules

    1. Compact store table — key columns: productId, title, brand, price, monthlySalesUnits, monthlySalesRevenue, rating, balance, turnoverDays, lostProfit, position.
    2. Revenue share = within this seller query — 0-100%; clarify the base.
    3. Russian titles — preserve; translate on user request.
    4. Currency labeling — if converted, note "converted to USD".
    5. Pagination — for stores with thousands of SKUs, suggest tighter filters before paging deep.
    6. No buying advice — the skill shows the store's book, not whether their SKUs are worth copying.

    Important Limitations

    • Numeric seller ID only — passing a seller name will not resolve; go through ecommerce-ozon-product-search first.
    • Page cap — max 100 rows per page.
    • T-1 data — endDate cannot be today or a future date.
    • No business advice — data-only.
    • Ozon-only — Wildberries / other Russian marketplaces are separate.

    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 ecommerce-ozon-product-search to resolve the ID
    • Brand-scoped drill → ecommerce-ozon-brand-products
    • Category-scoped drill → ecommerce-ozon-category-products
    • Single-SKU time-series → ecommerce-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.

    Требования и возможности

    Источник пакета
    https://github.com/nexscope-ai/nexscope-ecommerce-skills/tree/7fb4686e62c427df9e805651a0fb5e1891950055/ecommerce-ozon-seller-products

    Файлы версии

    ПутьРазмерSHA256
    SKILL.md841022c049f43f0f4e9d...
    manifest.json2873bc3be111e199979...
    references/api.md6357e42005b37a1bbb5d...
    scripts/ozon_seller_products.py67198512b898c8a30851...

    Частые вопросы

    Как установить Ozon: товары продавца?
    Используйте команду npx skills add nexscope-ai/nexscope-ecommerce-skills --skill ecommerce-ozon-seller-products или скачайте ZIP-архив.
    Можно ли скачать Ozon: товары продавца бесплатно?
    Да, опубликованную версию можно скачать из маркетплейса бесплатно.

    Похожие инструменты

    Смотреть все
    RendercvCreate professional CVs and resumes with perfect typography using RenderCV (v2.8). Users write content in YAML, and RenderCV produces publication-quality PDFs via Typst typesetting. Full control over every visual detail: colors, fonts, margins, spacing, section title styles, entry layouts, and more. 6 built-in themes with unlimited customization. Any language supported (22 built-in, or define your own). Outputs PDF, PNG, HTML, and Markdown. Use when the user wants to create, edit, customize, or render a CV or resume.Nextjs SeoNext.js App Router SEO optimization and auditing. Use when implementing or fixing SEO in a Next.js app — metadata and generateMetadata, viewport/themeColor, Open Graph and og/twitter images (file conventions + ImageResponse), web app manifest, favicons/icons, sitemap.xml, robots.txt, canonical URLs, hreflang/i18n alternates, JSON-LD structured data and rich results, Core Web Vitals (LCP/INP/CLS), AI search/GEO and AI crawler rules (GPTBot, OAI-SearchBot), or diagnosing Google indexing problems (Search Console, "Discovered/Crawled - currently not indexed"). Also use to run an SEO audit checklisSvg AnimationsCreate beautiful, performant SVG animations and illustrations. Use this skill when the user asks to create SVG graphics, icons, illustrations, animated logos, path animations, morphing shapes, loading spinners, or any animated SVG content. Covers SMIL animations, CSS-driven SVG animation, path drawing effects, shape morphing, motion paths, gradients, masks, and filters.Critical Thinking Logical ReasoningCritically analyse the reasoning in written content (articles, blogs, transcripts, reports), not code. Use only when explicitly asked to critically analyse or critique an argument.
    Комментарии

    Войдите, чтобы оставить комментарий.

    Комментариев пока нет.

    Установить скилл

    Добавьте инструмент одной командой или скачайте проверенный архив версии.

    npx skills add nexscope-ai/nexscope-ecommerce-skills --skill ecommerce-ozon-seller-products
    Скачать ZIP
    Версия
    1.0.0+7fb4686e62c4
    Автор
    Владимир Ломтев
    Исходный код