Calculators
FLSA overtime pay calculator API
Compute gross pay with FLSA overtime: regular pay up to the threshold (default 40 hrs) then 1.5x (configurable multiplier) above it, returning regular/overtime hours, rates, and gross. Deterministic wage math. Answers 'what's my pay for 48 hours at $25/hr','how much overtime do I get','time-and-a-half on 8 OT hours'.
Price$0.01per request
MethodPOST
Route/v1/calc/hr-overtime-pay
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
hrpayrollovertimeflsawagecalcpaylabor
API URL
Integration docshttps://x402.hexl.dev/v1/calc/hr-overtime-payExample request
{
"hourlyRate": 25,
"hoursWorked": 48
}Example response
{
"hourlyRate": 25,
"hoursWorked": 48,
"overtimeThreshold": 40,
"overtimeMultiplier": 1.5,
"regularHours": 40,
"overtimeHours": 8,
"overtimeRate": 37.5,
"regularPay": 1000,
"overtimePay": 300,
"grossPay": 1300
}Input schema
{
"type": "object",
"required": [
"hourlyRate",
"hoursWorked"
],
"properties": {
"hourlyRate": {
"type": "number",
"description": "Base hourly rate in dollars",
"examples": [
25
]
},
"hoursWorked": {
"type": "number",
"description": "Total hours worked in the period",
"examples": [
48
]
},
"overtimeThreshold": {
"type": "number",
"default": 40,
"examples": [
40
]
},
"overtimeMultiplier": {
"type": "number",
"default": 1.5,
"examples": [
1.5
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}