Skip to content

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

GET/api/v1/kenya/import-dutyBusiness & consumer tax

Import landed cost

The full landed cost of an import: EAC Common External Tariff duty on the CIF value, optional excise, the Import Declaration Fee (2.5%, min KES 5,000), the Railway Development Levy (2%), and 16% VAT on the sum.

Try it live

Request

GET https://www.leadafrik.com/api/v1/kenya/import-duty?cif=1000000&duty=25&excise=0

Response

Parameters

NameTypeRequiredDescription
cifnumberyesCost, Insurance & Freight customs value
duty0 | 10 | 25 | 35noEAC CET duty rate
excisenumbernoOptional ad-valorem excise rate (percent)

Call it from code

curl

curl "https://www.leadafrik.com/api/v1/kenya/import-duty?cif=1000000&duty=25"

JavaScript

const res = await fetch("https://www.leadafrik.com/api/v1/kenya/import-duty?cif=1000000&duty=25");
const { ok, data, meta } = await res.json();