Mobility Assessment API¶
Turn mobility screen inputs into a severity score, limiting-region map, and corrective execution guidance.
Endpoint¶
GET /api/v1/fitness/mobility-assessmentPOST /api/v1/fitness/mobility-assessment/post
Parameters¶
| Name | Type | Required | In | Description |
|---|---|---|---|---|
ankle_mobility_score | number (0-100) | Yes | Query/Body | Ankle mobility score. |
hip_mobility_score | number (0-100) | Yes | Query/Body | Hip mobility score. |
shoulder_mobility_score | number (0-100) | Yes | Query/Body | Shoulder mobility score. |
posture_type | string | Yes | Query/Body | neutral,anterior_pelvic_tilt,kyphotic,lordotic,swayback,flat_back. |
lang | string | No | Query | Response language (en,es,de,fr,pt,ja,hi,ar). |
Why Use This Endpoint¶
- Convert mobility assessments into structured corrective programming.
- Identify the most limiting movement regions quickly.
- Generate warmup personalization logic for coaching products.
Request Example¶
curl -X GET "https://api.hefitapi.com/api/v1/fitness/mobility-assessment?ankle_mobility_score=52&hip_mobility_score=61&shoulder_mobility_score=68&posture_type=anterior_pelvic_tilt&lang=en" \
-H "X-API-Key: YOUR_API_KEY"
curl -X POST "https://api.hefitapi.com/api/v1/fitness/mobility-assessment/post?lang=en" \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{"ankle_mobility_score":58,"hip_mobility_score":55,"shoulder_mobility_score":63,"posture_type":"kyphotic"}'
Response Example¶
Info
The response example below is for demonstration purposes only. Make a live request to this endpoint to receive the full, real-time, and potentially richer JSON structure.
{
"ankle_mobility_score": 52.0,
"hip_mobility_score": 61.0,
"shoulder_mobility_score": 68.0,
"posture_type": "anterior_pelvic_tilt",
"posture_type_label": "Anterior Pelvic Tilt",
"composite_mobility_score": 60,
"restriction_severity": {
"score": 47,
"level": "moderate",
"level_label": "Moderate",
"insight": "Mobility deficits may limit movement quality under load."
},
"limiting_regions": [
{"region": "ankle", "region_label": "Ankle", "score": 52.0, "restriction_level": "moderate"},
{"region": "hip", "region_label": "Hip", "score": 61.0, "restriction_level": "moderate"},
{"region": "shoulder", "region_label": "Shoulder", "score": 68.0, "restriction_level": "low"}
],
"corrective_focus": ["Restore ankle and hip mobility through daily drills"],
"warmup_customization_advice": ["Add mobility prep before loaded sessions"],
"retest_window_days": 21,
"confidence_score": 76,
"summary": "Moderate restriction profile with targeted corrective opportunity.",
"language": "en",
"_enterprise": {"client": "Acme Health", "plan": "pro", "request_id": "71d65d488d78d9b4", "quota": 120, "usage_tracking": true},
"_api_metadata_": {"endpoint_name": "fitness_mobility_assessment", "response_language": "en"}
}
Product Positioning¶
A practical core endpoint for movement screening apps and coaching SaaS workflows.
Note
All mobility scores must be 0-100; invalid values return HTTP 400.
Recommended Endpoints¶
GET /api/v1/bmi- Bmi APIGET /api/v1/tdee- Tdee APIGET /api/v1/bmr- Bmr APIGET /api/v1/protein-calculator- Protein Calculator APIGET /api/v1/fitness/heart-rate-zones- Heart Rate Zones APIGET /api/v1/bodyfat- Bodyfat API