{
  "tool_id": "micro_saas_pricing_engine",
  "slug": "micro-saas-pricing-engine",
  "path": "/micro-saas-pricing-engine/",
  "mode": "engine_module",
  "usage": "Client-side calculator. Open https://aibizhub.io/micro-saas-pricing-engine/ and fill in the inputs; results render in-browser. Also importable as ES module from https://aibizhub.io/engines/micro-saas-pricing-engine.js — call compute(input) with the JSON shape below.",
  "methodology": "https://aibizhub.io/methodology/micro-saas-pricing-engine/",
  "sample_input": {
    "tool": "micro_saas_pricing_engine",
    "current_users": 100,
    "api_cost_per_user": 0.5,
    "fixed_monthly_costs": 500,
    "competitor_price_low": 10,
    "competitor_price_high": 50,
    "target_gross_margin": 80,
    "value_metric": "per_seat"
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "current_users": {
        "type": "number"
      },
      "api_cost_per_user": {
        "type": "number"
      },
      "fixed_monthly_costs": {
        "type": "number"
      },
      "competitor_price_low": {
        "type": "number"
      },
      "competitor_price_high": {
        "type": "number"
      },
      "target_gross_margin": {
        "type": "number"
      },
      "value_metric": {
        "type": "string",
        "enum": [
          "per_seat",
          "usage",
          "tier",
          "flat"
        ]
      }
    },
    "required": [
      "tool",
      "current_users",
      "api_cost_per_user",
      "fixed_monthly_costs",
      "competitor_price_low",
      "competitor_price_high",
      "target_gross_margin",
      "value_metric"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "priceFloor": {
        "type": "number"
      },
      "suggestedPrice": {
        "type": "number"
      },
      "priceCeiling": {
        "type": "integer"
      },
      "costPerUser": {
        "type": "number"
      },
      "totalMonthlyCost": {
        "type": "integer"
      },
      "pricePoints": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "price": {
              "type": "number"
            },
            "mrr": {
              "type": "integer"
            },
            "grossMargin": {
              "type": "integer"
            }
          }
        }
      },
      "insight": {
        "type": "string"
      },
      "marginWarning": {
        "type": "boolean"
      }
    }
  }
}
