hesaplayıcı
Menu

Türkiye Withholding Tax Calculator: API and MCP

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

GET /api/v1/tools/tax.withholding.tr/mcp/tax

Id
tax.withholding.tr
Version
1.0.0
Access
Free
Tool page
Türkiye Withholding Tax Calculator
Schema
GET /api/v1/tools/tax.withholding.tr

Input

FieldTypeConstraintsDefaultDescription
amount (required)number≥ 0, ≤ 1,000,000,000Amount (TRY)
ratenumber≥ 0, ≤ 5020Withholding rate (%) · 20% for rent paid by a business and for self-employment fees, 5% for multi-year construction progress payments (Income Tax Law art. 94). Enter the rate of your payment.
directionstringgrossToNet | netToGrossgrossToNetDirection

Output

FieldTypeDescription
withholdingnumberWithholding tax (TRY)
grossnumberGross amount (TRY)
netnumberNet amount (TRY)

Example request

{
  "input": {
    "amount": 20000,
    "rate": 20,
    "direction": "grossToNet"
  },
  "locale": "en"
}
Example answer
{
  "output": {
    "withholding": 4000,
    "gross": 20000,
    "net": 16000
  },
  "steps": [
    {
      "id": "withholding",
      "formula": "withholding = gross amount × 20%",
      "substitution": "withholding = 20,000 × 20%",
      "value": 4000
    },
    {
      "id": "net",
      "formula": "net amount = gross amount − withholding",
      "substitution": "net amount = 20,000 − 4,000",
      "value": 16000
    }
  ],
  "meta": {
    "toolVersion": "1.0.0",
    "locale": "en"
  },
  "citation": {
    "url": "https://hesaplayici.com/en/tax/turkey-withholding-tax-calculator",
    "title": "Türkiye Withholding Tax Calculator"
  }
}