# FLSA Overtime Pay Calculator

> FLSA Overtime Pay Calculator is a paid API for AI agents from x402toll.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Calculates regular pay, overtime pay, and gross weekly pay based on hourly rate and hours worked using FLSA 1.5× overtime rules (configurable threshold and multiplier)

## Facts

- Endpoint: POST https://x402toll.com/v1/tax/overtime
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/flsa-overtime-pay-calculator-36baa30a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uAbSP8wJIa_iXQa6p8TLu

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability flsa-overtime-pay-calculator-36baa30a -d '<json body>'
```

Example prompt: My employee worked 52 hours this week at $21.50 per hour — can you calculate their gross pay with standard FLSA overtime (time and a half over 40 hours)?

## When to prefer this

Use this endpoint when you need a fast, accurate FLSA-compliant overtime pay calculation for a single week, especially when you want to split out regular vs overtime hours and their respective pay amounts. It supports configurable overtime thresholds and multipliers, making it suitable for non-standard arrangements (e.g., daily overtime, double-time rules). Prefer this over a general salary calculator when the user's question specifically involves hourly wages and overtime hours.

## Known failure modes

- Invalid hourly rate (negative or above maximum) returns validation error
- Hours worked exceeds 168-hour weekly maximum returns validation error
- Non-numeric inputs return schema validation error
- Missing required fields (hourlyRate or hoursWorked) return bad request error
- Overtime multiplier of 0 or negative may produce unexpected results

## How this service works

FLSA overtime pay: regular and overtime hours, the overtime rate, and gross pay for a week — federal 1.5× over 40 hours by default, any threshold/multiplier configurable.

## Output

Returns a breakdown of regular hours and overtime hours worked, the computed overtime rate (e.g. 1.5× the hourly rate), regular pay subtotal, overtime pay subtotal, and total gross weekly pay.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "hourlyRate": {
   "type": "number",
   "maximum": 100000,
   "minimum": 0
  },
  "hoursWorked": {
   "type": "number",
   "maximum": 168,
   "minimum": 0
  },
  "overtimeMultiplier": {
   "type": "number",
   "default": 1.5
  },
  "overtimeThresholdHours": {
   "type": "number",
   "default": 40
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/flsa-overtime-pay-calculator-36baa30a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402toll.com](https://www.zero.xyz/host/x402toll.com/llms.txt)
