Skip to content

We've built 200+ tools — open your toolbox, there's something in here you probably need.

GET/api/v1/finance/take-homeFinance

Take-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&region=KE

Response

Parameters

NameTypeRequiredDescription
incomenumberyesGross annual income
regionKE | NG | ZA | UK | USnoPayroll regime

Call it from code

curl

curl "https://www.leadafrik.com/api/v1/finance/take-home?income=1200000&region=KE"

JavaScript

const res = await fetch("https://www.leadafrik.com/api/v1/finance/take-home?income=1200000&region=KE");
const { ok, data, meta } = await res.json();