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
| Field | Type | Constraints | Default | Description |
|---|---|---|---|---|
startDate (required) | string | Start date | ||
endDate (required) | string | End date | ||
grossWage (required) | number | > 0, ≤ 100,000,000 | Last monthly gross wage (TRY) | |
benefits | number | ≥ 0, ≤ 100,000,000 | 0 | Regular monthly benefits (TRY) · Regular payments such as meals, transport or a twelfth of the yearly bonus. |
Output
| Field | Type | Description |
|---|---|---|
net | number | Net severance pay (TRY) |
gross | number | Gross severance pay (TRY) |
stampDuty | number | Stamp duty (TRY) |
wageUsed | number | Monthly wage used (TRY) |
ceiling | number | Ceiling on the end date (TRY) |
serviceYears | number | Length of service (years) |
years | number | Full years |
months | number | Months |
days | number | Days |
capped | boolean | The 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"
}
}