{
  "tool_id": "startup_runway_calculator",
  "slug": "startup-runway-calculator",
  "path": "/startup-runway-calculator/",
  "mode": "url_api",
  "api_usage": "GET https://aibizhub.io/api/startup-runway-calculator/?<params>",
  "sample_input": {
    "tool": "startup_runway",
    "cash_on_hand": 150000,
    "monthly_burn": 25000,
    "monthly_revenue": 5000,
    "revenue_growth_pct": 5,
    "burn_reduction_pct": 0
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "cash_on_hand": {
        "type": "integer"
      },
      "monthly_burn": {
        "type": "integer"
      },
      "monthly_revenue": {
        "type": "integer"
      },
      "revenue_growth_pct": {
        "type": "integer"
      },
      "burn_reduction_pct": {
        "type": "integer"
      }
    },
    "required": [
      "tool",
      "cash_on_hand",
      "monthly_burn",
      "monthly_revenue",
      "revenue_growth_pct",
      "burn_reduction_pct"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "runwayMonths": {
        "type": "number"
      },
      "defaultDate": {
        "type": "string"
      },
      "monthlyProjection": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "month": {
              "type": "number"
            },
            "cash": {
              "type": "number"
            },
            "burn": {
              "type": "number"
            },
            "revenue": {
              "type": "number"
            },
            "netBurn": {
              "type": "number"
            }
          }
        }
      },
      "breakEvenMonth": {
        "type": "null"
      }
    }
  }
}
