hesaplayıcı
Menu

Türkiye Severance Pay Calculator: API and MCP

Türkiye Severance 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.severance.tr/mcp/labor

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

Input

FieldTypeConstraintsDefaultDescription
startDate (required)stringStart date
endDate (required)stringEnd date
grossWage (required)number> 0, ≤ 100,000,000Last monthly gross wage (TRY)
benefitsnumber≥ 0, ≤ 100,000,0000Regular monthly benefits (TRY) · Regular payments such as meals, transport or a twelfth of the yearly bonus.

Output

FieldTypeDescription
netnumberNet severance pay (TRY)
grossnumberGross severance pay (TRY)
stampDutynumberStamp duty (TRY)
wageUsednumberMonthly wage used (TRY)
ceilingnumberCeiling on the end date (TRY)
serviceYearsnumberLength of service (years)
yearsnumberFull years
monthsnumberMonths
daysnumberDays
cappedbooleanThe severance ceiling limited the wage.

Example request

{
  "input": {
    "startDate": "2018-03-01",
    "endDate": "2026-06-01",
    "grossWage": 60000,
    "benefits": 5000
  },
  "locale": "en"
}
Example answer
{
  "output": {
    "net": 531760.42,
    "gross": 535827.35,
    "stampDuty": 4066.93,
    "wageUsed": 64948.77,
    "ceiling": 64948.77,
    "serviceYears": 8.25,
    "years": 8,
    "months": 3,
    "days": 0,
    "capped": true
  },
  "steps": [
    {
      "id": "serviceYears",
      "formula": "service = years + months/12 + days/365",
      "substitution": "service = 8 + 3/12 + 0/365",
      "value": 8.25,
      "unit": "years"
    },
    {
      "id": "wageUsed",
      "formula": "wage used = min(gross wage + benefits; ceiling)",
      "substitution": "wage used = min(65,000; 64,948.77)",
      "value": 64948.77
    },
    {
      "id": "gross",
      "formula": "gross severance pay = wage used × service",
      "substitution": "gross severance pay = 64,948.77 × (8 + 3/12 + 0/365)",
      "value": 535827.35
    },
    {
      "id": "stampDuty",
      "formula": "stamp duty = gross severance pay × 7.59 per mille",
      "substitution": "stamp duty = 535,827.35 × 7.59 per mille",
      "value": 4066.93
    },
    {
      "id": "net",
      "formula": "net severance pay = gross severance pay − stamp duty",
      "substitution": "net severance pay = 535,827.35 − 4,066.93",
      "value": 531760.42
    }
  ],
  "meta": {
    "toolVersion": "1.0.0",
    "dataVersion": "2026-01-01",
    "locale": "en"
  },
  "citation": {
    "url": "https://hesaplayici.com/en/salary-and-work/turkey-severance-pay-calculator",
    "title": "Türkiye Severance Pay Calculator"
  }
}