/v1/cap-rate
Cap rate and NOI
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/realestate-api/v1/cap-rate" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/realestate-api/v1/cap-rate", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/realestate-api/v1/cap-rate");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/realestate-api/v1/cap-rate",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"noi": 33600,
"note": "Cap rate = NOI / price, where NOI = gross rent × (1 − vacancy) − operating expenses (before any mortgage). GRM = price / annual gross rent.",
"inputs": {
"price": 500000,
"vacancy_rate": 5,
"annual_gross_rent": 48000,
"operating_expenses": 12000
},
"cap_rate_percent": 6.72,
"gross_rent_multiplier": 10.417,
"effective_gross_income": 45600
},
"meta": {
"timestamp": "2026-06-05T19:50:10.007Z",
"request_id": "9b87bbf7-9e6f-482f-bcc3-93aefbbea9d1"
},
"status": "ok",
"message": "Cap rate and NOI",
"success": true
}