{
  "tool_id": "side_hustle_break_even",
  "slug": "side-hustle-break-even-calculator",
  "path": "/side-hustle-break-even-calculator/",
  "mode": "url_api",
  "api_usage": "GET https://aifinhub.io/api/side-hustle-break-even-calculator/?<params>",
  "sample_input": {
    "tool": "side_hustle_break_even_calculator",
    "hours_per_week": "10",
    "hourly_value_of_time": "35",
    "monthly_expenses": "200",
    "monthly_revenue": "0",
    "startup_costs": "2000",
    "months_running": "6"
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "hours_per_week": {
        "type": "number",
        "minimum": 0,
        "maximum": 80
      },
      "hourly_value_of_time": {
        "type": "number",
        "minimum": 0
      },
      "monthly_expenses": {
        "type": "number",
        "minimum": 0
      },
      "monthly_revenue": {
        "type": "number",
        "minimum": 0
      },
      "startup_costs": {
        "type": "number",
        "minimum": 0
      },
      "months_running": {
        "type": "number",
        "minimum": 1,
        "maximum": 120
      }
    },
    "required": [
      "hours_per_week",
      "hourly_value_of_time",
      "monthly_expenses",
      "monthly_revenue",
      "startup_costs",
      "months_running"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "primaryLabel": {
        "type": "string"
      },
      "primaryValue": {
        "type": "number"
      },
      "primaryFormat": {
        "type": "string"
      },
      "summary": {
        "type": "string"
      },
      "metrics": {
        "type": "array"
      },
      "warnings": {
        "type": "array"
      }
    }
  }
}
