hesaplayıcı
Menu

Türkiye VAT Calculator: API and MCP

Türkiye VAT 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.vat.tr/mcp/tax

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

Input

FieldTypeConstraintsDefaultDescription
amount (required)number≥ 0, ≤ 10,000,000,000Amount (TRY)
ratenumber20 | 10 | 120VAT rate · The general rate is 20%. Some goods and services, such as basic food, have 10% or 1%.
directionstringnetToGross | grossToNetnetToGrossDirection

Output

FieldTypeDescription
vatnumberVAT amount (TRY)
netnumberAmount without VAT (TRY)
grossnumberAmount with VAT (TRY)

Example request

{
  "input": {
    "amount": 10000,
    "rate": 20,
    "direction": "netToGross"
  },
  "locale": "en"
}
Example answer
{
  "output": {
    "vat": 2000,
    "net": 10000,
    "gross": 12000
  },
  "steps": [
    {
      "id": "vat",
      "formula": "VAT = net amount × 20%",
      "substitution": "VAT = 10,000 × 20%",
      "value": 2000
    },
    {
      "id": "gross",
      "formula": "gross amount = net amount + VAT",
      "substitution": "gross amount = 10,000 + 2,000",
      "value": 12000
    }
  ],
  "meta": {
    "toolVersion": "1.0.0",
    "locale": "en"
  },
  "citation": {
    "url": "https://hesaplayici.com/en/tax/turkey-vat-calculator",
    "title": "Türkiye VAT Calculator"
  }
}