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
| Field | Type | Constraints | Default | Description |
|---|---|---|---|---|
price (required) | number | > 0, ≤ 100,000,000,000 | Declared sale price (TRY) | |
taxValue | number | ≥ 0, ≤ 100,000,000,000 | 0 | Property tax value (TRY) · Ask the municipality. The fee base cannot be below this value. Leave 0 if you do not know it. |
payer | string | split | buyer | seller | split | Who pays the fee? |
Output
| Field | Type | Description |
|---|---|---|
fee | number | Total title deed fee (TRY) |
buyerPays | number | Fee the buyer pays (TRY) |
sellerPays | number | Fee the seller pays (TRY) |
base | number | Fee base (TRY) |
raisedToTaxValue | boolean | The 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"
}
}