Türkiye Real Estate Commission Calculator: API and MCP
Türkiye Real Estate Commission 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.real-estate-commission.tr/mcp/housing
- Id
housing.real-estate-commission.tr- Version
- 1.0.0
- Access
- Free
- Tool page
- Türkiye Real Estate Commission Calculator
- Schema
GET /api/v1/tools/housing.real-estate-commission.tr
Input
| Field | Type | Constraints | Default | Description |
|---|---|---|---|---|
transaction | string | sale | rent | sale | Transaction |
amount (required) | number | > 0, ≤ 100,000,000,000 | Sale price or monthly rent (TRY) | |
rate | number | ≥ 0, ≤ 100 | Total commission rate (both parties) (%) · At most 4% of the sale price (2% per party) on a sale, at most 100% of one month’s rent on a rental. Leave it empty for the legal maximum. |
Output
| Field | Type | Description |
|---|---|---|
commission | number | Total commission (without VAT) (TRY) |
kdv | number | VAT (KDV) (TRY) |
total | number | Total commission (with VAT) (TRY) |
perPartyCommission | number | Commission per party (without VAT) (TRY) |
perPartyKdv | number | VAT per party (TRY) |
perPartyTotal | number | Payment per party (with VAT) (TRY) |
rate | number | Total rate applied (%) |
Example request
{
"input": {
"transaction": "sale",
"amount": 2000000
},
"locale": "en"
}Example answer
{
"output": {
"commission": 80000,
"kdv": 16000,
"total": 96000,
"perPartyCommission": 40000,
"perPartyKdv": 8000,
"perPartyTotal": 48000,
"rate": 4
},
"steps": [
{
"id": "rate",
"formula": "commission rate ≤ legal cap (4%)",
"substitution": "commission rate = 4%",
"value": 4,
"unit": "%"
},
{
"id": "commission",
"formula": "commission = sale price × commission rate",
"substitution": "commission = 2,000,000 × 4%",
"value": 80000
},
{
"id": "kdv",
"formula": "VAT = commission × 20%",
"substitution": "VAT = 80,000 × 20%",
"value": 16000
},
{
"id": "total",
"formula": "total with VAT = commission + VAT",
"substitution": "total with VAT = 80,000 + 16,000",
"value": 96000
},
{
"id": "perPartyTotal",
"formula": "per party = commission / 2 × (1 + 20%)",
"substitution": "per party = 40,000 + 8,000",
"value": 48000
}
],
"meta": {
"toolVersion": "1.0.0",
"locale": "en"
},
"citation": {
"url": "https://hesaplayici.com/en/housing/turkey-real-estate-commission-calculator",
"title": "Türkiye Real Estate Commission Calculator"
}
}