[Automation]
own product
Marketplace autopricer
The service computes prices from cost, target margin and a price corridor on its own — and keeps them updated across ~5,500 SKUs.
live demo — move the sliders, prices recalculate instantly
// real math on mock products
Pricing parameters
Price corridor — protection from extremes
{{ avgMargin }} %
avg actual margin
{{ clampedCount }}
products hit the corridor
| Product | Cost | Fee | Price | Margin | Status |
|---|---|---|---|---|---|
| {{ r.name }} | {{ r.cost }} ₽ | {{ r.comm }} % | {{ r.price }} ₽ | {{ r.marginPct }} % | {{ r.status }} |
The demo shows 8 products. In production the same calculation runs across ~5,500 SKUs: costs and fees come from the Ozon API, and prices update on a schedule.
01 · problem
Keeping prices current on thousands of products by hand is impossible: costs, fees and logistics keep shifting — and margin quietly drifts away.
02 · solution
A Python service: it pulls products and fees from the Ozon API, computes each price from cost, target margin and the corridor, updates on a schedule and writes a change report.
03 · result
~5,500 SKUs reprice automatically. Manual price work shrank to tuning the parameters.
Python
Ozon API
automation