Get a Specific Item
GET
/api/v1/items/{itemCd}Kenya Revenue Authority eTIMS does not expose a single-item fetch endpoint. Use GET {{API_PATH}}/items to retrieve the full item list, then filter client-side by itemCd. The full list is delta-synced from Kenya Revenue Authority on each call.
Requires x-api-key
http://localhost:8100/api/v1/items/{itemCd}
Path Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| itemCd | string | Required | The Kenya Revenue Authority item code to look up (e.g. SV0000000Z001). |
How to Fetch a Single Item
Fetch the full item list and filter by itemCd.
Response
{
"success": true,
"data": [
{
"itemCd": "SV0000000Z001",
"itemClsCd": "5020230000",
"itemNm": "Monthly SaaS Subscription",
"itemTyCd": "3",
"taxTyCd": "B",
"dftPrc": 5000,
"useYn": "Y"
}
]
}# Fetch full list, then filter locally
curl http://localhost:8100/api/v1/items \\
-H "x-api-key: YOUR_API_KEY"