Skip to content

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

GET/api/v1/kenya/withholdingBusiness & consumer tax

Withholding 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=resident

Response

Parameters

NameTypeRequiredDescription
amountnumberyesThe gross payment
typedividends | interest | royalties | managementFees | rentImmovable | contractualyesThe kind of payment
residencyresident | nonResidentnoPayee 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();