{
  "tool_id": "cac_calculator",
  "slug": "cac-calculator",
  "path": "/cac-calculator/",
  "mode": "url_api",
  "api_usage": "GET https://aibizhub.io/api/cac-calculator/?<params>",
  "sample_input": {
    "tool": "cac_calculator",
    "sales_marketing_spend": 32000,
    "new_customers": 40,
    "arpu_monthly": 129,
    "gross_margin_percent": 78,
    "monthly_churn_percent": 4
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "sales_marketing_spend": {
        "type": "integer"
      },
      "new_customers": {
        "type": "integer"
      },
      "arpu_monthly": {
        "type": "integer"
      },
      "gross_margin_percent": {
        "type": "integer"
      },
      "monthly_churn_percent": {
        "type": "integer"
      }
    },
    "required": [
      "tool",
      "sales_marketing_spend",
      "new_customers",
      "arpu_monthly",
      "gross_margin_percent",
      "monthly_churn_percent"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "primaryLabel": {
        "type": "string"
      },
      "primaryValue": {
        "type": "number"
      },
      "primaryFormat": {
        "type": "string"
      },
      "summary": {
        "type": "string"
      },
      "metrics": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "label": {
              "type": "string"
            },
            "value": {
              "type": "number"
            },
            "format": {
              "type": "string"
            }
          }
        }
      },
      "warnings": {
        "type": "array",
        "items": {}
      },
      "assumptionsEcho": {
        "type": "object",
        "properties": {
          "sales_marketing_spend": {
            "type": "number"
          },
          "new_customers": {
            "type": "number"
          },
          "arpu_monthly": {
            "type": "number"
          },
          "gross_margin_percent": {
            "type": "number"
          },
          "monthly_churn_percent": {
            "type": "number"
          }
        }
      }
    }
  }
}
