hesaplayıcı
Menu

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

FieldTypeConstraintsDefaultDescription
transactionstringsale | rentsaleTransaction
amount (required)number> 0, ≤ 100,000,000,000Sale price or monthly rent (TRY)
ratenumber≥ 0, ≤ 100Total 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

FieldTypeDescription
commissionnumberTotal commission (without VAT) (TRY)
kdvnumberVAT (KDV) (TRY)
totalnumberTotal commission (with VAT) (TRY)
perPartyCommissionnumberCommission per party (without VAT) (TRY)
perPartyKdvnumberVAT per party (TRY)
perPartyTotalnumberPayment per party (with VAT) (TRY)
ratenumberTotal 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"
  }
}