{
  "tool_id": "body_fat_percentage_calculator",
  "slug": "body-fat-percentage-calculator",
  "path": "/body-fat-percentage-calculator/",
  "mode": "url_api",
  "api_usage": "GET https://aifithub.io/api/body-fat-percentage-calculator/?<params>",
  "sample_input": {
    "tool": "body_fat",
    "gender": "male",
    "weight_kg": 80,
    "waist_cm": 85,
    "neck_cm": 38,
    "height_cm": 178
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "gender": {
        "type": "string"
      },
      "weight_kg": {
        "type": "integer"
      },
      "waist_cm": {
        "type": "integer"
      },
      "neck_cm": {
        "type": "integer"
      },
      "height_cm": {
        "type": "integer"
      }
    },
    "required": [
      "tool",
      "gender",
      "weight_kg",
      "waist_cm",
      "neck_cm",
      "height_cm"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "bodyFatPercent": {
        "type": "number"
      }
    }
  }
}
