### Example Response for Pricing Recommendations (JSON) Source: https://github.com/artemkuzmin1992/ozon-logistic/blob/main/calculators.md Shows an example JSON response containing pricing recommendations, including the current price and margin, recommended price and margin, and competitive analysis data (min/max/average price, price elasticity). ```json { "result": { "current_price": 1990.00, "current_margin": 20.13, "recommended_price": 2250.00, "recommended_margin": 25.00, "competitive_analysis": { "min_price": 1850.00, "max_price": 2500.00, "average_price": 2100.00, "price_elasticity": "medium" } } } ``` -------------------------------- ### Example Request for Pricing Recommendations (JSON) Source: https://github.com/artemkuzmin1992/ozon-logistic/blob/main/calculators.md Provides an example JSON payload for requesting pricing recommendations, including the product ID, current price, purchase price, and an optional target profit margin. ```json { "product_id": 123456789, "current_price": 1990.00, "purchase_price": 1000.00, "target_profit_margin": 25 } ``` -------------------------------- ### Example Request for Economics Calculation (JSON) Source: https://github.com/artemkuzmin1992/ozon-logistic/blob/main/calculators.md Provides an example JSON payload for calculating the economics of a single product, including category, price, dimensions, weight, model, and optional additional expenses. ```json { "category_id": 17030, "price": 1990.00, "purchase_price": 1000.00, "dimensions": { "length": 30, "width": 20, "height": 10 }, "weight": 500, "model": "FBO", "additional_expenses": { "logistics_to_warehouse": 50.00, "marketing": 100.00, "packaging": 30.00 } } ``` -------------------------------- ### Example Request for Economics Forecast (JSON) Source: https://github.com/artemkuzmin1992/ozon-logistic/blob/main/calculators.md Presents an example JSON payload for requesting an economics forecast, including the product ID, price, forecast period in days, and sales forecast details (min/max quantity, return rate). ```json { "product_id": 123456789, "price": 1990.00, "forecast_period": 30, "sales_forecast": { "min_quantity": 50, "max_quantity": 100, "return_rate": 5 } } ``` -------------------------------- ### Example Response for Economics Calculation (JSON) Source: https://github.com/artemkuzmin1992/ozon-logistic/blob/main/calculators.md Shows an example JSON response containing the calculated revenue, detailed expenses (purchase, commission, delivery, storage, additional, total), profit (amount and percent), and break-even points (price and markup). ```json { "result": { "revenue": 1990.00, "expenses": { "purchase_price": 1000.00, "commission": 298.50, "delivery": 110.00, "storage": 0.90, "additional": { "logistics_to_warehouse": 50.00, "marketing": 100.00, "packaging": 30.00 }, "total": 1589.40 }, "profit": { "amount": 400.60, "percent": 20.13, "roi": 25.20 }, "break_even": { "price": 1589.40, "markup": 58.94 } } } ``` -------------------------------- ### Example Request for Bulk Economics Calculation (JSON) Source: https://github.com/artemkuzmin1992/ozon-logistic/blob/main/calculators.md Illustrates a JSON request payload for calculating the economics of multiple products simultaneously, using an array of product objects, each with relevant parameters like SKU, category, price, dimensions, weight, and model. ```json { "products": [ { "sku": 123456, "category_id": 17030, "price": 1990.00, "purchase_price": 1000.00, "dimensions": { "length": 30, "width": 20, "height": 10 }, "weight": 500, "model": "FBO" }, { "sku": 789012, "category_id": 15621, "price": 599.00, "purchase_price": 300.00, "dimensions": { "length": 20, "width": 15, "height": 5 }, "weight": 250, "model": "FBS" } ] } ``` -------------------------------- ### API Endpoint for Pricing Recommendations (HTTP) Source: https://github.com/artemkuzmin1992/ozon-logistic/blob/main/calculators.md Specifies the HTTP method and endpoint for obtaining pricing recommendations to optimize product economics. ```http POST /v1/pricing/recommendations ``` -------------------------------- ### API Endpoint for Packaging Calculation (HTTP) Source: https://github.com/artemkuzmin1992/ozon-logistic/blob/main/calculators.md Specifies the HTTP method and endpoint for calculating the cost of packaging for a product. ```http POST /v1/packaging/calculate ``` -------------------------------- ### API Endpoint for Economics Forecast (HTTP) Source: https://github.com/artemkuzmin1992/ozon-logistic/blob/main/calculators.md Defines the HTTP method and endpoint used to request a sales and expense forecast for a specific product. ```http POST /v1/economics/forecast ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.