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

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

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

Контакты

Москва

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

+7 (999) 760-24-41

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

lamooof@gmail.com

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

TelegramWhatsApp

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

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

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

Политика конфиденциальностиСогласие на обработку ПДн|ИНН 623412173261
    WB-seller api — Скилл для ИИ-агентов | AI Рассвет

    WB-seller api

    Wildberries seller API reference. Use when building integrations with Wildberries marketplace, writing code that calls WB API endpoints, debugging WB API issues, or when the user asks about Wildberries API capabilities, endpoints, authentication, or rate limits.

    #WB
    Скачивания
    8
    В избранном
    0
    Комментарии
    0
    Просмотры
    124

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

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

    npx airassvet-skills add wb-seller-api
    Скачать ZIP
    Версия
    1.0.0
    Автор
    Владимир Ломтев

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

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

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

    Wildberries API

    The Wildberries API (WB API) provides sellers with tools to manage their store via HTTP REST API. It enables automation of store operations through integration with ERP, WMS, OMS, CRM systems.

    Authentication

    All requests require an API token in the Authorization header. Tokens are JWT (RFC 7519), valid for 180 days.

    Token types:

    • Personal access (acc:3, for:self) -- full access, must not be shared with third parties
    • Service (acc:4) -- for a specific cloud service from WB's catalog
    • Base (acc:1) -- limited data access, for testing or fallback
    • Test (acc:2, t:true) -- sandbox only, generated test data

    Each token has a bitmask field s controlling category access (Content, Analytics, Prices, Marketplace, Statistics, Promotion, Feedbacks, Buyers Chat, Supplies, Returns, Documents, Finance, Users).

    Base URLs by API Category

    Category Production Base URL Sandbox Base URL
    Common (News, Seller Info, Tariffs) common-api.wildberries.ru --
    Content content-api.wildberries.ru content-api-sandbox.wildberries.ru
    Analytics seller-analytics-api.wildberries.ru --
    Prices and Discounts discounts-prices-api.wildberries.ru discounts-prices-api-sandbox.wildberries.ru
    Marketplace (FBS/DBS/Pickup) marketplace-api.wildberries.ru --
    Statistics statistics-api.wildberries.ru statistics-api-sandbox.wildberries.ru
    Promotion advert-api.wildberries.ru advert-api-sandbox.wildberries.ru
    Promotion (Media) advert-media-api.wildberries.ru --
    Promotions Calendar dp-calendar-api.wildberries.ru --
    Feedbacks and Questions feedbacks-api.wildberries.ru feedbacks-api-sandbox.wildberries.ru
    Buyers Chat buyer-chat-api.wildberries.ru --
    Supplies (FBW) supplies-api.wildberries.ru --
    Buyers Returns returns-api.wildberries.ru --
    Documents documents-api.wildberries.ru --
    Finance finance-api.wildberries.ru --
    User Management user-management-api.wildberries.ru --

    Rate Limiting

    Uses token bucket algorithm. Key headers:

    • X-Ratelimit-Remaining -- requests available without pause
    • X-Ratelimit-Retry -- seconds to wait after 429
    • X-Ratelimit-Limit -- max burst size
    • X-Ratelimit-Reset -- seconds until burst fully restores

    A 409 response typically counts as 10 requests toward the limit.

    HTTP Status Codes

    Code Meaning
    200 Success
    204 Deleted/Updated/Confirmed
    400 Bad request -- check syntax
    401 Unauthorized -- check token category, expiry
    403 Access denied -- token user deleted or method blocked
    404 Not found -- check URL
    409 Conflict -- check data requirements
    413 Request body too large -- reduce objects
    422 Unprocessable -- contradictory request data
    429 Rate limited -- wait per X-Ratelimit-Retry
    5xx Server error -- retry later

    Connection Test

    GET https://{base-url}/ping -- works with any token category. Max 3 requests per 30 seconds.

    API Categories Quick Reference

    Each category's full endpoint reference is in a separate file. Read the relevant file when you need detailed endpoint information:

    • Content (product cards, categories, media, tags): references/content.md
    • Prices and Discounts: references/prices.md
    • Marketplace (seller warehouses, inventory): references/marketplace.md
    • FBS Orders (fulfillment by seller): references/orders-fbs.md
    • DBS Orders (delivery by seller): references/orders-dbs.md
    • In-Store Pickup Orders: references/in-store-pickup.md
    • FBW Supplies (fulfillment by Wildberries): references/supplies-fbw.md
    • Analytics (sales funnel, search, stocks): references/analytics.md
    • Reports (statistics, warehouses, retention): references/reports.md
    • Promotion (ad campaigns, media, search clusters): references/promotion.md
    • Feedbacks, Questions, Buyers Chat, Returns: references/communication.md
    • Finance and Documents: references/finance-documents.md
    • User Management: references/users.md

    Code Generation Guidelines

    When writing code that interacts with WB API:

    1. Always pass the token via Authorization header (not query params)
    2. Respect rate limits -- implement exponential backoff on 429 responses, read X-Ratelimit-Retry header
    3. Use the correct base URL for the API category (do not mix hosts)
    4. Handle pagination where endpoints support cursor/limit/offset patterns
    5. For async reports (warehouse remains, paid storage, paid reception), use the create-task -> poll-status -> download pattern
    6. Token category in the JWT s bitmask must include the bit for the API category being accessed
    7. Sandbox endpoints use -sandbox suffix on the base domain where available

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

    Для этого скилла не опубликованы структурированные требования.

    Файлы версии

    ПутьРазмерSHA256
    SKILL.md55803165ff8e867a5b6f...
    references/analytics.md2376189db106af5d918e...
    references/communication.md2906c39077566210d114...
    references/content.md3063a7b2b0d7d843cf05...
    references/finance-documents.md1148af2f19f8bc92da61...

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

    Как установить WB-seller api?
    Используйте команду npx airassvet-skills add wb-seller-api или скачайте ZIP-архив.
    Можно ли скачать WB-seller api бесплатно?
    Да, опубликованную версию можно скачать из маркетплейса бесплатно.

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

    Смотреть все
    Ozon Seller и Performance APIСправочник Ozon Seller API и Performance API с локальными OpenAPI-спецификациями.Яндекс Диск: Копирование ресурсаСкопировать файл или папку, не перезаписывая данные без подтверждения.Terraform Style GuideGenerate Terraform HCL code following HashiCorp's official style conventions and best practices. Use when writing, reviewing, or generating Terraform configurations.Grill MeA relentless interview to sharpen a plan or design.
    Комментарии

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

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

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

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

    npx airassvet-skills add wb-seller-api
    Скачать ZIP
    Версия
    1.0.0
    Автор
    Владимир Ломтев