Get Import Items

GET/api/v1/imports

Retrieve the list of imported items registered against your taxpayer PIN in Kenya Revenue Authority eTIMS. These are goods your business has imported and that Kenya Revenue Authority has recorded via the customs declaration process.

Requires x-api-key

http://localhost:8100/api/v1/imports

Query Parameters

FieldTypeRequiredDescription
sincestringOptionalFetch imports updated after this timestamp, yyyyMMddHHmmss format. Defaults to '20180101000000' (all records).

Import Status Codes

Response

{
  "success": true,
  "data": [
    {
      "itemSeq": 1,
      "taskCd": "TASK-001",
      "dclDe": "20240115",
      "itemCd": null,
      "hsCd": "8471300000",
      "itemNm": "Laptop Computer",
      "imptItemSttsCd": "3",
      "qty": 10,
      "prc": 50000,
      "totAmt": 500000,
      "orgnNatCd": "CN",
      "exptNatCd": "CN"
    }
  ]
}
curl "http://localhost:8100/api/v1/imports?since=20240101000000" \\
  -H "x-api-key: YOUR_API_KEY"