Get Student Height Stats
Designing
Returns the average, minimum, and maximum height of students. Also includes distribution of students by height ranges.
Request Code Samples
curl --location --request GET 'https://sims.sman1samarinda.sch.id/api/v1/dashboard/students/height'
Responses
application/json {
"success": true,
"message": "OK.",
"meta": {},
"errors": [],
"result": {
"averageHeight": 155.6,
"minHeight": 140,
"maxHeight": 170,
"heightRanges": [
{
"range": "141-150 cm",
"count": 8
}
]
}
}
Modified at 2025-10-28 17:26:10