GET
/api/v1/kenya/housing-levyPay & statutoryAffordable Housing Levy
The Affordable Housing Levy on the employee side: 1.5% of gross pay (the employer contributes a matching 1.5%).
Try it live
Request
GET https://www.leadafrik.com/api/v1/kenya/housing-levy?gross=100000Response
…Parameters
| Name | Type | Required | Description |
|---|---|---|---|
gross | number | yes | Monthly gross salary in KES |
Call it from code
curl
curl "https://www.leadafrik.com/api/v1/kenya/housing-levy?gross=100000"JavaScript
const res = await fetch("https://www.leadafrik.com/api/v1/kenya/housing-levy?gross=100000");
const { ok, data, meta } = await res.json();