Calculators
Absenteeism rate calculator API
Compute absenteeism rate = (absent days / (available work days x employees)) x 100, returning attendance rate and a low/moderate/high rating. Deterministic attendance math. Answers 'what's our absenteeism rate','attendance percentage for the team','absence rate over 250 work days'.
Price$0.01per request
MethodPOST
Route/v1/calc/hr-absenteeism-rate
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
hrabsenteeismattendancemetricsworkforcecalcleaveproductivity
API URL
Integration docshttps://x402.hexl.dev/v1/calc/hr-absenteeism-rateExample request
{
"absentDays": 120,
"availableWorkDays": 250,
"employees": 50
}Example response
{
"absentDays": 120,
"availableWorkDays": 250,
"employees": 50,
"totalAvailableDays": 12500,
"absenteeismRate": 0.96,
"attendanceRate": 99.04,
"rating": "low"
}Input schema
{
"type": "object",
"required": [
"absentDays",
"availableWorkDays"
],
"properties": {
"absentDays": {
"type": "number",
"description": "Total absent days across the workforce",
"examples": [
120
]
},
"availableWorkDays": {
"type": "number",
"description": "Available work days per employee in the period",
"examples": [
250
]
},
"employees": {
"type": "number",
"default": 1,
"examples": [
50
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}