Calculators
Price-to-rent ratio (buy vs rent) API
Price-to-rent = price / annual rent, with a buy/neutral/rent signal (<15 favors buying, >20 favors renting). Answers 'price-to-rent ratio for this market', 'should I buy or rent here', 'is a P/R of 17 neutral'.
Price$0.01per request
MethodPOST
Route/v1/calc/re-price-to-rent
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
real-estateprice-to-rentbuy-vs-rentratiomarketsignalfinancecalc
API URL
Integration docshttps://x402.hexl.dev/v1/calc/re-price-to-rentExample request
{
"price": 400000,
"monthlyRent": 2000
}Example response
{
"price": 400000,
"annualRent": 24000,
"priceToRentRatio": 16.67,
"signal": "neutral (15-20)"
}Input schema
{
"type": "object",
"required": [
"price",
"monthlyRent"
],
"properties": {
"price": {
"type": "number",
"examples": [
400000
]
},
"monthlyRent": {
"type": "number",
"examples": [
2000
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}