{
  "tool_id": "wholesale_pricing_calculator",
  "slug": "wholesale-pricing-calculator",
  "path": "/wholesale-pricing-calculator/",
  "mode": "engine_module",
  "usage": "Client-side calculator. Open https://aibizhub.io/wholesale-pricing-calculator/ and fill in the inputs; results render in-browser. Also importable as ES module from https://aibizhub.io/engines/wholesale-pricing-calculator.js — call compute(input) with the JSON shape below.",
  "methodology": "https://aibizhub.io/methodology/wholesale-pricing-calculator/",
  "sample_input": {
    "tool": "wholesale_pricing_calculator",
    "unit_cost": 12,
    "overhead_per_unit": 3,
    "strategy": "cost_plus",
    "wholesale_markup_percent": 100,
    "retail_markup_percent": 100,
    "moq": 50
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "unit_cost": {
        "type": "number"
      },
      "overhead_per_unit": {
        "type": "number"
      },
      "strategy": {
        "type": "string"
      },
      "wholesale_markup_percent": {
        "type": "number"
      },
      "retail_markup_percent": {
        "type": "number"
      },
      "moq": {
        "type": "number"
      }
    },
    "required": [
      "tool",
      "unit_cost",
      "strategy"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "landedCost": {
        "type": "number",
        "description": "Total landed cost per unit (unit cost + overhead) in dollars"
      },
      "wholesalePrice": {
        "type": "number",
        "description": "Calculated wholesale price per unit in dollars"
      },
      "keystoneRetailPrice": {
        "type": "number",
        "description": "Keystone retail price (2× wholesale) in dollars"
      },
      "rrp": {
        "type": "number",
        "description": "Recommended retail price based on retail_markup_percent over wholesale in dollars"
      },
      "wholesaleMarginPercent": {
        "type": "number",
        "description": "Gross margin at wholesale price as a percentage"
      },
      "wholesaleMarkupPercent": {
        "type": "number",
        "description": "Markup at wholesale price as a percentage of landed cost"
      },
      "retailMarginPercent": {
        "type": "number",
        "description": "Retailer gross margin at keystone retail price as a percentage"
      },
      "retailMarkupPercent": {
        "type": "number",
        "description": "Retailer markup at keystone retail price as a percentage of wholesale"
      },
      "wholesaleToRetailMultiplier": {
        "type": "number",
        "description": "Ratio of keystone retail to landed cost"
      },
      "moq": {
        "type": "number",
        "description": "Minimum order quantity used in the calculation"
      },
      "strategy": {
        "type": "string",
        "description": "Pricing strategy used"
      },
      "minimumViablePrice": {
        "type": "number",
        "description": "Minimum viable wholesale price (just above break-even) in dollars"
      },
      "moqRevenue": {
        "type": "number",
        "description": "Total revenue at MOQ units and wholesale price in dollars"
      },
      "moqGrossProfit": {
        "type": "number",
        "description": "Total gross profit at MOQ units and wholesale price in dollars"
      },
      "summaryLabel": {
        "type": "string",
        "description": "Human-readable margin health summary"
      }
    }
  }
}
