curl --request GET \
--url https://api.alpha-1edtech.ai/edubridge/time-saved/user/{userId} \
--header 'Authorization: Bearer <token>'{
"data": {
"totalHoursSaved": 600,
"totalDaysSaved": 25,
"schoolDaysElapsed": 120,
"earliestStartDate": "2024-08-25T00:00:00.000Z",
"schoolYearStartDate": "2024-08-15T00:00:00.000Z",
"calculation": {
"standardSchoolHoursPerDay": 7,
"timebackHoursPerDay": 2,
"hoursSavedPerDay": 5,
"formula": "120 school days × 5 hours saved per day = 600 hours"
}
}
}Calculates the total time a student has “got back” during the current school year.
This endpoint compares the personalized learning system’s efficient 2-hour daily study time against traditional school schedules (6 hours class + 1 hour homework = 7 hours total), resulting in 5 hours saved per school day.
The calculation starts from the student’s earliest valid enrollment date within the current school year (or the school year start date if they enrolled earlier) and counts only actual school days (excluding weekends, holidays, breaks, and MAP testing days).
Formula: Number of school days elapsed × 5 hours saved per day = Total hours saved
The response includes both the total hours saved and equivalent full days saved (hours ÷ 24).
curl --request GET \
--url https://api.alpha-1edtech.ai/edubridge/time-saved/user/{userId} \
--header 'Authorization: Bearer <token>'{
"data": {
"totalHoursSaved": 600,
"totalDaysSaved": 25,
"schoolDaysElapsed": 120,
"earliestStartDate": "2024-08-25T00:00:00.000Z",
"schoolYearStartDate": "2024-08-15T00:00:00.000Z",
"calculation": {
"standardSchoolHoursPerDay": 7,
"timebackHoursPerDay": 2,
"hoursSavedPerDay": 5,
"formula": "120 school days × 5 hours saved per day = 600 hours"
}
}
}The access token received from the authorization server in the OAuth 2.0 flow.
The unique identifier for the student
Successful response
Time saved calculation for the student during the current school year
Show child attributes