GET
/api/v1/finance/income-taxFinanceIncome 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®ion=KEResponse
…Parameters
| Name | Type | Required | Description |
|---|---|---|---|
income | number | yes | Gross annual income |
region | KE | NG | ZA | UK | US | no | Tax jurisdiction |
Call it from code
curl
curl "https://www.leadafrik.com/api/v1/finance/income-tax?income=1200000®ion=KE"JavaScript
const res = await fetch("https://www.leadafrik.com/api/v1/finance/income-tax?income=1200000®ion=KE");
const { ok, data, meta } = await res.json();