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
| Field | Type | Constraints | Default | Description |
|---|---|---|---|---|
amount (required) | number | ≥ 0, ≤ 10,000,000,000 | Amount (TRY) | |
rate | number | 20 | 10 | 1 | 20 | VAT rate · The general rate is 20%. Some goods and services, such as basic food, have 10% or 1%. |
direction | string | netToGross | grossToNet | netToGross | Direction |
Output
| Field | Type | Description |
|---|---|---|
vat | number | VAT amount (TRY) |
net | number | Amount without VAT (TRY) |
gross | number | Amount 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"
}
}