Skip to content
GET /v1/overtime

Overtime / double-time pay

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/payroll-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/payroll-api/v1/overtime" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/payroll-api/v1/overtime", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/payroll-api/v1/overtime");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/payroll-api/v1/overtime",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "note": "Gross pay only. Default overtime is time-and-a-half above 40 hours; adjust threshold/multiplier as your rules require.",
        "input": {
            "hours": 45,
            "hourly": 25,
            "threshold": 40,
            "multiplier": 1.5,
            "double_threshold": null,
            "double_multiplier": null
        },
        "gross_pay": 1187.5,
        "regular_pay": 1000,
        "overtime_pay": 187.5,
        "regular_hours": 40,
        "overtime_hours": 5,
        "double_time_pay": 0,
        "effective_hourly": 26.39,
        "double_time_hours": 0
    },
    "meta": {
        "timestamp": "2026-06-03T17:41:59.849Z",
        "request_id": "86d57673-827c-4304-84d9-9c6f2e58a4a7"
    },
    "status": "ok",
    "message": "Overtime pay",
    "success": true
}