hesaplayıcı
Menu

Türkiye Overtime Pay Calculator: API and MCP

Türkiye Overtime Pay Calculator over REST and MCP: input fields, limits, outputs, one example request and its real answer. Free, no sign-up.

GET /api/v1/tools/labor.overtime.tr/mcp/labor

Id
labor.overtime.tr
Version
1.0.0
Access
Free
Tool page
Türkiye Overtime Pay Calculator
Schema
GET /api/v1/tools/labor.overtime.tr

Input

FieldTypeConstraintsDefaultDescription
grossWage (required)number> 0, ≤ 10,000,000Monthly gross wage (TRY)
hours (required)number≥ 0, ≤ 270Overtime hours (hours) · The total overtime hours to be paid. The yearly limit is 270 hours.
typestringovertime | extraHoursovertimeType of work

Output

FieldTypeDescription
paynumberGross overtime pay (TRY)
hourlyWagenumberHourly gross wage (TRY)
overtimeRatenumberOvertime hourly rate (TRY)
multipliernumberHourly rate as a percent of the wage (%)

Example request

{
  "input": {
    "grossWage": 45000,
    "hours": 10,
    "type": "overtime"
  },
  "locale": "en"
}
Example answer
{
  "output": {
    "pay": 3000,
    "hourlyWage": 200,
    "overtimeRate": 300,
    "multiplier": 150
  },
  "steps": [
    {
      "id": "hourlyWage",
      "formula": "hourly wage = monthly gross wage / 225",
      "substitution": "hourly wage = 45,000 / 225",
      "value": 200
    },
    {
      "id": "overtimeRate",
      "formula": "overtime hourly rate = hourly wage × 150%",
      "substitution": "overtime hourly rate = 200 × 150%",
      "value": 300
    },
    {
      "id": "pay",
      "formula": "overtime pay = monthly gross wage / 225 × 150% × hours",
      "substitution": "overtime pay = 45,000 / 225 × 150% × 10",
      "value": 3000
    }
  ],
  "meta": {
    "toolVersion": "1.0.0",
    "locale": "en"
  },
  "citation": {
    "url": "https://hesaplayici.com/en/salary-and-work/turkey-overtime-pay-calculator",
    "title": "Türkiye Overtime Pay Calculator"
  }
}