Emlak Vergisi Hesaplama: API ve MCP
Emlak Vergisi Hesaplama için REST ve MCP başvurusu: girdi alanları, sınırlar, çıktılar, örnek istek ve gerçek yanıt. Ücretsiz, kayıt yok.
GET /api/v1/tools/housing.property-tax.tr/mcp/housing
- Kimlik
housing.property-tax.tr- Sürüm
- 1.0.0
- Erişim
- Ücretsiz
- Araç sayfası
- Emlak Vergisi Hesaplama
- Şema
GET /api/v1/tools/housing.property-tax.tr
Girdiler
| Alan | Tür | Sınırlar | Varsayılan | Açıklama |
|---|---|---|---|---|
year (zorunlu) | integer | ≥ 2.005, ≤ 2.100 | Vergi yılı | |
mode | string | fromValue | fromPreviousValue | fromValue | Hesaplama |
value | number | > 0, ≤ 100.000.000.000 | Vergi değeri (TL) · Belediyenin emlak vergisi bildiriminde veya e-Devlet’te yazan o yılın değeri. | |
previousValue | number | > 0, ≤ 100.000.000.000 | Geçen yılın vergi değeri (TL) · Geçen yılın değerini girerseniz araç onu o yılın artış oranıyla yükseltir. Genel takdir yıllarında kullanılamaz. | |
propertyType | string | home | otherBuilding | plot | land | home | Taşınmaz türü |
location | string | metropolitan | other | metropolitan | Konum |
relief | string | none | singleHome | none | Sıfır oran |
Çıktılar
| Alan | Tür | Açıklama |
|---|---|---|
tax | number | Yıllık emlak vergisi (TL) |
installment | number | Taksit tutarı (2 taksit) (TL) |
value | number | Vergi değeri (TL) |
rate | number | Uygulanan oran (‰) |
valueIncrease | number | Yılın değer artış oranı (%) |
Örnek istek
curl -X POST https://hesaplayici.com/api/v1/tools/housing.property-tax.tr/execute \
-H 'Content-Type: application/json' \
-d '{"input":{"year":2026,"mode":"fromValue","value":2000000,"propertyType":"home","location":"metropolitan","relief":"none"},"locale":"tr"}'Örnek yanıt
{
"output": {
"tax": 4000,
"installment": 2000,
"value": 2000000,
"rate": 2,
"valueIncrease": 0
},
"steps": [
{
"id": "tax",
"formula": "yıllık emlak vergisi = vergi değeri × oran",
"substitution": "yıllık emlak vergisi = 2.000.000,00 × binde 2",
"value": 4000
},
{
"id": "installment",
"formula": "taksit = yıllık emlak vergisi / 2",
"substitution": "taksit = 4.000,00 / 2",
"value": 2000
}
],
"notes": [],
"meta": {
"toolVersion": "1.0.0",
"dataVersion": "2026-01-01",
"locale": "tr"
},
"citation": {
"url": "https://hesaplayici.com/konut/emlak-vergisi-hesaplama",
"title": "Emlak Vergisi Hesaplama"
}
}