{
  "tool_id": "sales_forecast_calculator",
  "slug": "sales-forecast-calculator",
  "path": "/sales-forecast-calculator/",
  "mode": "url_api",
  "api_usage": "GET https://aibizhub.io/api/sales-forecast-calculator/?<params>",
  "sample_input": {
    "tool": "sales_forecast",
    "starting_mrr": 80000,
    "monthly_growth_percent": 5,
    "pipeline_conversion_percent": 22,
    "avg_deal_size": 1200,
    "new_opportunities_per_month": 40,
    "months": 12
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "starting_mrr": {
        "type": "integer"
      },
      "monthly_growth_percent": {
        "type": "integer"
      },
      "pipeline_conversion_percent": {
        "type": "integer"
      },
      "avg_deal_size": {
        "type": "integer"
      },
      "new_opportunities_per_month": {
        "type": "integer"
      },
      "months": {
        "type": "integer"
      }
    },
    "required": [
      "tool",
      "starting_mrr",
      "monthly_growth_percent",
      "pipeline_conversion_percent",
      "avg_deal_size",
      "new_opportunities_per_month",
      "months"
    ]
  },
  "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": {
          "starting_mrr": {
            "type": "number"
          },
          "monthly_growth_percent": {
            "type": "number"
          },
          "pipeline_conversion_percent": {
            "type": "number"
          },
          "avg_deal_size": {
            "type": "number"
          },
          "new_opportunities_per_month": {
            "type": "number"
          },
          "months": {
            "type": "number"
          }
        }
      }
    }
  }
}
