GET
/api/v1/kenya/rental-incomeBusiness & consumer taxMonthly Rental Income tax
Monthly Rental Income tax for residential landlords: 7.5% of gross rent, no expense deduction, for annual rent between KES 288,000 and 15,000,000.
Try it live
Request
GET https://www.leadafrik.com/api/v1/kenya/rental-income?rent=80000Response
…Parameters
| Name | Type | Required | Description |
|---|---|---|---|
rent | number | yes | Gross monthly rent collected |
Call it from code
curl
curl "https://www.leadafrik.com/api/v1/kenya/rental-income?rent=80000"JavaScript
const res = await fetch("https://www.leadafrik.com/api/v1/kenya/rental-income?rent=80000");
const { ok, data, meta } = await res.json();