WB API Digest — January 2026

In the latest edition of our monthly digest, we highlight the new features and updates released in January 2026

345
content

WB API Digest — January 2026

In January 2026, Wildberries released 7 API updates. Key topics: a new method for retrieving B2B buyer data in DBS, cross-border support in FBS assembly orders and supplies, and continued expansion of the sales report with new discount fields.

Disclaimer: Practical recommendations in this digest may vary depending on the specifics of your implementation.

Ready-made Postman collection: For convenient testing and working with the API, we've prepared a collection of methods from this digest. Import it into your Postman, set your API key in the api_key variable, and start working with the methods right away.

Technical support is responsible for how the API itself works.

Discuss the Postman interface and collections in the Community.


At a Glance

WhatSummary
🆕 B2B buyer informationNew DBS method — TIN, KPP, and organization name
🔄 New FBS assembly orderscrossBorderType field for cross-border
🔄 FBS assembly order informationcrossBorderType field for cross-border
🔄 FBS supply list / Supply informationcrossBorderType field for cross-border
🔄 Sales reportLoyalty discount and promo code fields
🔄 FeedbacksImage format webp instead of jpg — February 5
⚠️ Chat list / Chat eventsclientID removal — February 2
⚠️ Chat list / Chat eventsstatusID removal — February 10

Reminders from Previous Digests

If you missed the December digest, note that several deadlines are still ahead:

DeadlineWhat's Changing
February 2Deprecation of single-bid campaign methods (type 8) — migrate to type 9
February 9Barcodes removed from inventory methods — migrate to chrtId
March 11Deprecation of the "Supplies" method — migrate to "Supply Information" methods

Critical Changes with Deadlines

DeadlineWhat's ChangingRequired Action
February 2clientID field removal from chat methodsRemove field handling from response parsing
February 5Image format in feedbacks: webp instead of jpgUpdate photoLinks processing
February 10statusID field removal from chat methodsRemove field handling from response parsing

DBS Orders

New Method: B2B Buyer Information

A new method for retrieving B2B buyer information has been added for the DBS model. You can now get B2B buyer data via the API: TIN, KPP, and organization name.

The method accepts an array of assembly order IDs and returns buyer details for each one. To determine whether an order is a B2B sale, check the options.isB2b field in the response of the Get new DBS assembly orders method. If isB2b: true — call the new method to get the buyer's details.

What This Enables

For business:

  • Automatic generation of closing documents for legal entities
  • Faster B2B order processing without manually requesting details
  • Ability to maintain separate B2B and B2C sales accounting

For developers:

  • Integration with accounting systems (1C, MoySklad) for automatic invoice generation
  • Order data enrichment with buyer details without manual entry

FBS Orders

crossBorderType Field in Assembly Orders and Supplies

The crossBorderType field has been added to the responses of four FBS methods, indicating whether an assembly order or supply is cross-border.

The field appears in assembly order methods:

And in supply methods:

How supplies work: you can add any assembly order — cross-border or not — to an empty supply. The supply inherits the type of the first added order, after which only orders of the same type can be added. This behavior is analogous to how a supply inherits its cargo type (cargoType) from the first order.

If you work with cross-border via FBS, use crossBorderType to route orders into separate supplies and correctly handle logistics flows.


Documents and Accounting

New Fields in Sales Report Details

The Sales by realization report method continues to expand — two sets of fields were added in January. As a reminder, in December the same method received the delivery_method, seller_promo_id, and seller_promo_discount fields.

Loyalty Discounts (from January 12)

The loyalty_id and loyalty_discount fields have been added to the response — they show the ID and percentage of the seller's loyalty discount. More about the loyalty discount mechanics: announcement.

Promo Code Discounts (from January 19)

Similarly, uuid_promocode and sale_price_promocode_discount_prc have been added — the promo code ID and its discount percentage. More about promo codes: announcement.

Both updates are available in daily and weekly reports starting from the dates listed above. If you build management reporting based on the API, add processing for the new fields for accurate discount accounting.


Customer Communication

Deprecated Field Removal from Chats

Wildberries continues cleaning up deprecated fields in the Chat list and Chat events methods. The clientID field (buyer ID) will be removed on February 2, and the statusID field (product status) on February 10.

Both fields have long been obsolete and were marked as deprecated in the documentation. If your code processes these fields — remove them before the respective deadlines to avoid parsing errors.

Image Format in Feedbacks

Starting February 5, images in the photoLinks field will be returned in webp format instead of jpg for the following methods:

The URL format in the fullSize and miniSize fields will change — file extensions in links will be .webp instead of .jpg. If you save or process feedback photos, make sure your code handles the webp format correctly. Most modern image processing libraries support webp, but if you validate file extensions or MIME types — update those checks.


Migration Checklist

Before February 2

  • Remove clientID field handling in chat methods
  • (from December) Complete migration from type 8 campaigns to type 9

Before February 5

  • Update image format handling in photoLinks (webp instead of jpg)

Before February 9

  • (from December) Replace barcodes with chrtId in all inventory methods

Before February 10

  • Remove statusID field handling in chat methods

Before March 11

  • (from December) Migrate from the "Supplies" method to "Supply Information" methods
  • Integrate the B2B buyer data method into DBS order processing
  • Use crossBorderType to route cross-border FBS orders
  • Add loyalty_id, loyalty_discount, uuid_promocode, and sale_price_promocode_discount_prc to financial reporting

Official documentation and resources