Calculators
Rental yield (gross & net) API
Gross rental yield = annual rent / value; net yield = (effective rent − expenses) / value, with a rating bucket. Answers 'gross and net rental yield on this property', 'is a 5% net yield good', 'yield after 5% vacancy and expenses'.
Price$0.01per request
MethodPOST
Route/v1/calc/re-rental-yield
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
real-estaterental-yieldyieldrentreturnincomefinancecalc
API URL
Integration docshttps://x402.hexl.dev/v1/calc/re-rental-yieldExample request
{
"propertyValue": 400000,
"monthlyRent": 2500,
"annualExpenses": 8000,
"vacancyPct": 5
}Example response
{
"propertyValue": 400000,
"grossAnnualRent": 30000,
"grossYieldPct": 7.5,
"netYieldPct": 5.13,
"rating": "moderate (4-6%)"
}Input schema
{
"type": "object",
"required": [
"propertyValue",
"monthlyRent"
],
"properties": {
"propertyValue": {
"type": "number",
"examples": [
400000
]
},
"monthlyRent": {
"type": "number",
"examples": [
2500
]
},
"annualExpenses": {
"type": "number",
"examples": [
8000
]
},
"vacancyPct": {
"type": "number",
"default": 0
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}