wi
Wildberries is the largest online retailer in Russia and one of the largest in Europe. It offers a comprehensive marketplace API for sellers to manage products, inventory, orders, pricing, advertising, and analytics.
With the Wildberries integration in AACFlow, you can:
- Manage product inventory: Retrieve and update stock levels for your warehouse products
- Track orders: Fetch order lists, order details, and order statuses in real time
- Update pricing: Set and adjust product prices and discounts dynamically
- Get sales reports: Access detailed sales analytics, revenue data, and performance metrics
- Manage product listings: Create, update, and delete product cards and characteristics
- Automate fulfillment: Trigger order processing, returns management, and shipment workflows
This integration enables complete e-commerce automation on Wildberries, helping sellers optimize operations, maintain accurate inventory, and respond quickly to market demand.
Usage Instructions
Integrate Wildberries into the workflow. Can manage inventory, orders, pricing, and product listings. Requires Wildberries API credentials.
Tools
wb_get_stocks
Get current stock levels for products
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
warehouseId | number | No | Warehouse ID filter |
sku | string | No | Product SKU filter |
apiKey | string | Yes | Wildberries API key |
Output
| Parameter | Type | Description |
|---|---|---|
stocks | array | Array of stock items with SKU, warehouse, quantity |
total | number | Total stock records |
wb_get_orders
Retrieve order list
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
dateFrom | string | Yes | Start date (ISO 8601) |
dateTo | string | No | End date (ISO 8601) |
status | number | No | Order status filter |
limit | number | No | Results per page |
apiKey | string | Yes | Wildberries API key |
Output
| Parameter | Type | Description |
|---|---|---|
orders | array | Array of order objects |
total | number | Total order count |
wb_update_stocks
Update product stock levels
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
stocks | array | Yes | Array of {sku, warehouseId, quantity} |
apiKey | string | Yes | Wildberries API key |
Output
| Parameter | Type | Description |
|---|---|---|
success | boolean | Whether the update succeeded |
updated | array | Array of updated stock records |

