Sarcopenia Risk API¶
Screen sarcopenia risk using functional and anthropometric inputs.
Endpoint¶
GET /api/v1/health/sarcopenia-riskPOST /api/v1/health/sarcopenia-risk/post
Parameters¶
| Name | Type | Required | In | Description |
|---|---|---|---|---|
age | integer | Yes | Query/Body | User age. |
gender | string | Yes | Query/Body | male or female. |
grip_strength_kg | number | Yes | Query/Body | Grip strength in kg. |
calf_circumference_cm | number | Yes | Query/Body | Calf circumference in cm. |
sarc_f_score | integer (0-10) | Yes | Query/Body | SARC-F questionnaire score. |
lang | string | No | Query | Response language (en,fr,es,de,pt,ja,hi,ar,bn,gu,id,it,ko,mr,nl,pa,pl,ro,ru,ta,te,th,tr,ur,vi,zh). |
Request Example¶
curl -X GET "https://api.hefitapi.com/api/v1/health/sarcopenia-risk?age=67&gender=female&grip_strength_kg=22&calf_circumference_cm=30&sarc_f_score=4&lang=en" \
-H "X-API-Key: YOUR_API_KEY"
Response Example¶
{
"age": 67,
"gender": "female",
"grip_strength_kg": 22.0,
"calf_circumference_cm": 30.0,
"sarc_f_score": 4,
"risk_score": 8,
"risk_category": "high",
"risk_category_label": "High sarcopenia risk",
"summary": "Sarcopenia risk is high and functional assessment is recommended.",
"recommendations": [],
"language": "en",
"_api_metadata_": {"endpoint_name": "sarcopenia_risk", "response_language": "en"}
}
Localization¶
This endpoint reads health_fitness_sarcopenia_risk.json from the supported language catalogs.
Recommended Endpoints¶
GET /api/v1/fitness/grip-strength-ratio- Grip Strength Ratio APIGET /api/v1/fitness/longevity-score- Longevity Score APIGET /api/v1/fitness/strength-benchmark- Strength Benchmark API