{
  "tool_id": "agent_cost_per_validated_customer",
  "slug": "agent-cost-per-validated-customer",
  "path": "/agent-cost-per-validated-customer/",
  "mode": "engine_module",
  "usage": "Client-side calculator. Open https://aibizhub.io/agent-cost-per-validated-customer/ and fill in the inputs; results render in-browser. Also importable as ES module from https://aibizhub.io/engines/agent-cost-per-validated-customer.js — call compute(input) with the JSON shape below.",
  "methodology": "https://aibizhub.io/methodology/agent-cost-per-validated-customer/",
  "sample_input": {
    "tool": "agent_cost_per_validated_customer",
    "monthly_active_users": 5000,
    "activation_rate": 35,
    "retention_30d": 45,
    "tokens_per_user_per_month": 60000,
    "model_input_price_per_mtok": 3,
    "model_output_price_per_mtok": 15,
    "infra_cost_per_user_per_month": 0.5,
    "price_per_user_per_month": 20
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "monthly_active_users": {
        "type": "number"
      },
      "activation_rate": {
        "type": "number"
      },
      "retention_30d": {
        "type": "number"
      },
      "tokens_per_user_per_month": {
        "type": "number"
      },
      "model_input_price_per_mtok": {
        "type": "number"
      },
      "model_output_price_per_mtok": {
        "type": "number"
      },
      "infra_cost_per_user_per_month": {
        "type": "number"
      },
      "price_per_user_per_month": {
        "type": "number"
      }
    },
    "required": [
      "tool",
      "monthly_active_users",
      "activation_rate",
      "retention_30d",
      "tokens_per_user_per_month",
      "model_input_price_per_mtok",
      "model_output_price_per_mtok",
      "infra_cost_per_user_per_month",
      "price_per_user_per_month"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "totalMonthlyAiCost": {
        "type": "number"
      },
      "totalMonthlyInfraCost": {
        "type": "number"
      },
      "totalMonthlyCost": {
        "type": "number"
      },
      "validatedCustomers": {
        "type": "number"
      },
      "costPerValidatedCustomer": {
        "type": "number"
      },
      "monthlyRevenueAtPrice": {
        "type": "number"
      },
      "grossMarginAtPrice": {
        "type": "number"
      },
      "grossMarginPercentAtPrice": {
        "type": "number"
      }
    }
  }
}
