Calculate BMI
GET/api/me/health/bmi
Calculates BMI from the user's latest height and weight measurements.
Formula: BMI = weight(kg) / height(m)²
Categories:
- Underweight: BMI < 18.5
- Normal: 18.5 ≤ BMI < 25
- Overweight: 25 ≤ BMI < 30
- Obese: BMI ≥ 30
Unit conversion is handled automatically (lb → kg, in → cm).
Responses
- 200
- 401
- 500
BMI calculation result
Unauthorized
Internal server error