GET
/api/v1/finance/take-homeFinanceTake-home pay (region-aware)
Gross annual income to net take-home for the chosen country — income tax plus social security. Kenya runs through the canonical monthly payroll engine on live rates; other regions use their published schedules.
Try it live
Request
GET https://www.leadafrik.com/api/v1/finance/take-home?income=1200000®ion=KEResponse
…Parameters
| Name | Type | Required | Description |
|---|---|---|---|
income | number | yes | Gross annual income |
region | KE | NG | ZA | UK | US | no | Payroll regime |
Call it from code
curl
curl "https://www.leadafrik.com/api/v1/finance/take-home?income=1200000®ion=KE"JavaScript
const res = await fetch("https://www.leadafrik.com/api/v1/finance/take-home?income=1200000®ion=KE");
const { ok, data, meta } = await res.json();