Skip to content

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

GET/api/v1/finance/income-taxFinance

Income tax (region-aware)

Progressive annual income tax across the bands for the chosen country. Kenya uses the live registry with NSSF/SHIF/Housing deducted first; other regions use their published schedules. Returns tax, taxable income, effective and marginal rates.

Try it live

Request

GET https://www.leadafrik.com/api/v1/finance/income-tax?income=1200000&region=KE

Response

Parameters

NameTypeRequiredDescription
incomenumberyesGross annual income
regionKE | NG | ZA | UK | USnoTax jurisdiction

Call it from code

curl

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

JavaScript

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