Get Student Transportation Stats
Designing
Returns the distribution of students by transportation method (e.g., walking, bicycle, motorbike, car, public transport, etc.).
Request Code Samples
curl --location --request GET 'https://sims.sman1samarinda.sch.id/api/v1/dashboard/students/transportation'
Responses
application/json {
"success": true,
"message": "OK.",
"meta": {},
"errors": [],
"result": [
{
"transportType": "Sepeda Motor",
"count": 150,
"percentage": 75
},
{
"transportType": "Mobil Pribadi",
"count": 50,
"percentage": 25
}
]
}
Modified at 2025-10-28 17:26:10