hesaplayıcı
Menu

Türkiye Net to Gross Salary Calculator: API and MCP

Türkiye Net to Gross Salary 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.net-to-gross.tr/mcp/labor

Id
labor.net-to-gross.tr
Version
1.0.0
Access
Free
Tool page
Türkiye Net to Gross Salary Calculator
Schema
GET /api/v1/tools/labor.net-to-gross.tr

Input

FieldTypeConstraintsDefaultDescription
net (required)number≥ 0, ≤ 100,000,000Target monthly net pay (TRY)
year (required)integer≥ 2,000, ≤ 2,100Year
monthinteger≥ 1, ≤ 121Month · The month the result shows. The tax base builds up during the year.
incentivestringgeneral | manufacturing | nonegeneralEmployer premium discount

Output

FieldTypeDescription
grossnumberGross salary needed (TRY)
netnumberNet pay at that gross (TRY)
employeeSgknumberEmployee social security (TRY)
employeeUnemploymentnumberEmployee unemployment insurance (TRY)
taxBasenumberIncome tax base (TRY)
cumulativeBasenumberCumulative tax base (TRY)
incomeTaxBeforeExemptionnumberIncome tax before the exemption (TRY)
minimumWageExemptionnumberMinimum wage exemption (TRY)
incomeTaxnumberIncome tax due (TRY)
stampDutynumberStamp duty (TRY)
employerCostnumberEmployer cost (TRY)

Example request

{
  "input": {
    "net": 40000,
    "year": 2026,
    "month": 1,
    "incentive": "general"
  },
  "locale": "en"
}
Example answer
{
  "output": {
    "gross": 49709.72,
    "net": 40000,
    "employeeSgk": 6959.36,
    "employeeUnemployment": 497.1,
    "taxBase": 42253.26,
    "cumulativeBase": 42253.26,
    "incomeTaxBeforeExemption": 6337.99,
    "minimumWageExemption": 4211.33,
    "incomeTax": 2126.66,
    "stampDuty": 126.6,
    "employerCost": 60521.58
  },
  "steps": [
    {
      "id": "gross",
      "formula": "gross = the smallest amount with net(gross) ≥ the target net",
      "substitution": "net(49,709.72) = 40,000 ≥ 40,000",
      "value": 49709.72
    },
    {
      "id": "employeeSgk",
      "formula": "employee SGK = min(gross; ceiling) × 14%",
      "substitution": "employee SGK = min(49,709.72; 297,270) × 14%",
      "value": 6959.36
    },
    {
      "id": "employeeUnemployment",
      "formula": "unemployment insurance = min(gross; ceiling) × 1%",
      "substitution": "unemployment insurance = min(49,709.72; 297,270) × 1%",
      "value": 497.1
    },
    {
      "id": "taxBase",
      "formula": "tax base = gross − employee SGK − unemployment insurance",
      "substitution": "tax base = 49,709.72 − 6,959.36 − 497.1",
      "value": 42253.26
    },
    {
      "id": "cumulativeBase",
      "formula": "cumulative base = earlier months + tax base",
      "substitution": "cumulative base = 0 + 42,253.26",
      "value": 42253.26
    },
    {
      "id": "incomeTaxBeforeExemption",
      "formula": "income tax before the exemption = tax(cumulative base) − tax(earlier months)",
      "substitution": "income tax before the exemption = tax(42,253.26) − tax(0)",
      "value": 6337.99
    },
    {
      "id": "minimumWageExemption",
      "formula": "minimum wage exemption = tax(minimum wage)",
      "substitution": "minimum wage exemption = tax(33,030)",
      "value": 4211.33
    },
    {
      "id": "incomeTax",
      "formula": "income tax = income tax before the exemption − minimum wage exemption",
      "substitution": "income tax = 6,337.99 − 4,211.33",
      "value": 2126.66
    },
    {
      "id": "stampDuty",
      "formula": "stamp duty = (gross − minimum wage) × 7.59 per mille",
      "substitution": "stamp duty = (49,709.72 − 33,030) × 7.59 per mille",
      "value": 126.6
    },
    {
      "id": "net",
      "formula": "net = gross − employee SGK − unemployment insurance − income tax − stamp duty",
      "substitution": "net = 49,709.72 − 6,959.36 − 497.1 − 2,126.66 − 126.6",
      "value": 40000
    },
    {
      "id": "employerCost",
      "formula": "employer cost = gross + employer SGK (19.75%) + employer unemployment (2%)",
      "substitution": "employer cost = 49,709.72 + 9,817.67 + 994.19",
      "value": 60521.58
    }
  ],
  "meta": {
    "toolVersion": "1.0.0",
    "dataVersion": "2026-01-01",
    "locale": "en"
  },
  "citation": {
    "url": "https://hesaplayici.com/en/salary-and-work/turkey-net-to-gross-salary-calculator",
    "title": "Türkiye Net to Gross Salary Calculator"
  }
}