GET
/api/v1/kenya/import-dutyBusiness & consumer taxImport 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=0Response
…Parameters
| Name | Type | Required | Description |
|---|---|---|---|
cif | number | yes | Cost, Insurance & Freight customs value |
duty | 0 | 10 | 25 | 35 | no | EAC CET duty rate |
excise | number | no | Optional 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();