GET
/api/v1/kenya/withholdingBusiness & consumer taxWithholding Tax
Withholding tax on a payment, by income type and whether the payee is resident or non-resident. Returns the rate, the tax withheld and the net paid.
Try it live
Request
GET https://www.leadafrik.com/api/v1/kenya/withholding?amount=100000&type=dividends&residency=residentResponse
…Parameters
| Name | Type | Required | Description |
|---|---|---|---|
amount | number | yes | The gross payment |
type | dividends | interest | royalties | managementFees | rentImmovable | contractual | yes | The kind of payment |
residency | resident | nonResident | no | Payee residency |
Call it from code
curl
curl "https://www.leadafrik.com/api/v1/kenya/withholding?amount=100000&type=dividends&residency=resident"JavaScript
const res = await fetch("https://www.leadafrik.com/api/v1/kenya/withholding?amount=100000&type=dividends&residency=resident");
const { ok, data, meta } = await res.json();