{
  "tool_id": "wholesale_pricing_calculator",
  "slug": "wholesale-pricing-calculator",
  "path": "/wholesale-pricing-calculator/",
  "mode": "url_api",
  "api_usage": "GET https://aibizhub.io/api/wholesale-pricing-calculator/?<params>",
  "sample_input": {
    "tool": "wholesale_pricing_calculator",
    "unit_cost": 12.0,
    "overhead_per_unit": 3.0,
    "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",
        "description": "Unit production cost in dollars"
      },
      "overhead_per_unit": {
        "type": "number",
        "description": "Overhead per unit in dollars"
      },
      "strategy": {
        "type": "string",
        "enum": [
          "cost_plus",
          "keystone",
          "target_margin"
        ]
      },
      "wholesale_markup_percent": {
        "type": "number"
      },
      "target_margin_percent": {
        "type": "number"
      },
      "retail_markup_percent": {
        "type": "number"
      },
      "moq": {
        "type": "number",
        "description": "Minimum order quantity"
      }
    },
    "required": [
      "tool",
      "unit_cost"
    ]
  },
  "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\u00d7 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"
      }
    }
  }
}