{
  "tool_id": "lean_body_mass_calculator",
  "slug": "lean-body-mass-calculator",
  "path": "/lean-body-mass-calculator/",
  "mode": "url_api",
  "api_usage": "GET https://aifithub.io/api/lean-body-mass-calculator/?<params>",
  "sample_input": {
    "tool": "lean_body_mass",
    "sex": "male",
    "weight_kg": 80,
    "height_cm": 178
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "sex": {
        "type": "string"
      },
      "weight_kg": {
        "type": "integer"
      },
      "height_cm": {
        "type": "integer"
      }
    },
    "required": [
      "tool",
      "sex",
      "weight_kg",
      "height_cm"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "formulas": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "name": {
              "type": "string"
            },
            "lbmKg": {
              "type": "number"
            },
            "bodyFatPct": {
              "type": "number"
            }
          }
        }
      },
      "averageLbmKg": {
        "type": "number"
      },
      "averageBodyFatPct": {
        "type": "number"
      },
      "weightKg": {
        "type": "number"
      }
    }
  }
}
