hesaplayıcı
Menu

Türkiye Rent Increase Calculator: API and MCP

Türkiye Rent Increase 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.rent-increase.tr/mcp/housing

Id
housing.rent-increase.tr
Version
1.0.0
Access
Free
Tool page
Türkiye Rent Increase Calculator
Schema
GET /api/v1/tools/housing.rent-increase.tr

Input

FieldTypeConstraintsDefaultDescription
rent (required)number> 0, ≤ 1,000,000,000Current monthly rent (TRY)
renewalDate (required)stringRenewal date
usestringresidential | commercialresidentialProperty

Output

FieldTypeDescription
maxRentnumberMaximum new rent (TRY)
increasenumberMaximum increase (TRY)
ratenumberMaximum increase rate (%)
cpiAveragenumberCPI 12-month average change (%)
cappedbooleanThe 25% cap on residential rents applied.

Example request

{
  "input": {
    "rent": 20000,
    "renewalDate": "2026-09-15",
    "use": "residential"
  },
  "locale": "en"
}
Example answer
{
  "output": {
    "maxRent": 26358,
    "increase": 6358,
    "rate": 31.79,
    "cpiAverage": 31.79,
    "capped": false
  },
  "steps": [
    {
      "id": "rate",
      "formula": "increase rate = CPI 12-month average change (2026-08)",
      "substitution": "increase rate = 31.79%",
      "value": 31.79,
      "unit": "%"
    },
    {
      "id": "maxRent",
      "formula": "maximum new rent = rent × (1 + increase rate)",
      "substitution": "maximum new rent = 20,000 × (1 + 31.79%)",
      "value": 26358
    }
  ],
  "meta": {
    "toolVersion": "1.0.0",
    "dataVersion": "2026-08-01",
    "locale": "en"
  },
  "citation": {
    "url": "https://hesaplayici.com/en/housing/turkey-rent-increase-calculator",
    "title": "Türkiye Rent Increase Calculator"
  }
}