Get Kenya Revenue Authority Notices

GET/api/v1/notices

Fetch the latest system notices published by Kenya Revenue Authority. Notices may include maintenance windows, policy updates, or compliance alerts.

Requires x-api-key

http://localhost:8100/api/v1/notices

Response Fields

Each notice in noticeList includes a notice number, title, contents, optional detail URL, and registration date.

Response

{
  "resultCd": "000",
  "data": {
    "noticeList": [
      {
        "noticeNo": "N-001",
        "title": "System Maintenance",
        "contents": "Scheduled maintenance on 2024-02-01 from 00:00 to 04:00 EAT.",
        "dtlUrl": null,
        "regDt": "20240115"
      }
    ]
  }
}
curl http://localhost:8100/api/v1/notices \\
  -H "x-api-key: YOUR_API_KEY"