{
  "tool_id": "waist_to_hip_ratio_calculator",
  "slug": "waist-to-hip-ratio-calculator",
  "path": "/waist-to-hip-ratio-calculator/",
  "mode": "url_api",
  "api_usage": "GET https://aifithub.io/api/waist-to-hip-ratio-calculator/?<params>",
  "sample_input": {
    "tool": "waist_hip_ratio",
    "waist_cm": 85,
    "hip_cm": 100,
    "gender": "male"
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "waist_cm": {
        "type": "integer"
      },
      "hip_cm": {
        "type": "integer"
      },
      "gender": {
        "type": "string"
      }
    },
    "required": [
      "tool",
      "waist_cm",
      "hip_cm",
      "gender"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "ratio": {
        "type": "number"
      },
      "riskCategory": {
        "type": "string"
      },
      "riskDescription": {
        "type": "string"
      }
    }
  }
}
