hesaplayıcı
Menu

Türkiye Title Deed Fee Calculator: API and MCP

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

GET /api/v1/tools/housing.title-deed-fee.tr/mcp/housing

Id
housing.title-deed-fee.tr
Version
1.0.0
Access
Free
Tool page
Türkiye Title Deed Fee Calculator
Schema
GET /api/v1/tools/housing.title-deed-fee.tr

Input

FieldTypeConstraintsDefaultDescription
price (required)number> 0, ≤ 100,000,000,000Declared sale price (TRY)
taxValuenumber≥ 0, ≤ 100,000,000,0000Property tax value (TRY) · Ask the municipality. The fee base cannot be below this value. Leave 0 if you do not know it.
payerstringsplit | buyer | sellersplitWho pays the fee?

Output

FieldTypeDescription
feenumberTotal title deed fee (TRY)
buyerPaysnumberFee the buyer pays (TRY)
sellerPaysnumberFee the seller pays (TRY)
basenumberFee base (TRY)
raisedToTaxValuebooleanThe property tax value is higher than the price, so the fee uses that value.

Example request

{
  "input": {
    "price": 5000000,
    "taxValue": 0,
    "payer": "split"
  },
  "locale": "en"
}
Example answer
{
  "output": {
    "fee": 200000,
    "buyerPays": 100000,
    "sellerPays": 100000,
    "base": 5000000,
    "raisedToTaxValue": false
  },
  "steps": [
    {
      "id": "base",
      "formula": "fee base = max(sale price; property tax value)",
      "substitution": "fee base = max(5,000,000; 0)",
      "value": 5000000
    },
    {
      "id": "share",
      "formula": "share per party = fee base × per mille 20",
      "substitution": "share per party = 5,000,000 × 20 / 1000",
      "value": 100000
    },
    {
      "id": "fee",
      "formula": "total title deed fee = 2 × share per party",
      "substitution": "total title deed fee = 2 × 100,000",
      "value": 200000
    }
  ],
  "meta": {
    "toolVersion": "1.0.0",
    "locale": "en"
  },
  "citation": {
    "url": "https://hesaplayici.com/en/housing/turkey-title-deed-fee-calculator",
    "title": "Türkiye Title Deed Fee Calculator"
  }
}