| # | fiscal_year | fiscal_year_start | category | receipt | receipt_path | receipt_level | status | value | unit |
|---|---|---|---|---|---|---|---|---|---|
| loading... | |||||||||
| COLUMN | TYPE | DESCRIPTION | UNIT |
|---|---|---|---|
| fiscal_year | string | Kenyan fiscal year in "YYYY/YY" format (e.g. "2024/25") | - |
| fiscal_year_start | date | First day of the fiscal year (July 1) | - |
| category | string | tax or non-tax. Empty on TOTAL ORDINARY REVENUE, which covers both. | - |
| receipt | string | Receipt name as printed in the source | - |
| receipt_path | string | The receipt's name preceded by the head it belongs to, e.g. "Taxes on international trade transactions > Custom duties". Heads and totals are their own path. This is what makes the inferred tree walkable. | - |
| receipt_level | string | total (ordinary revenue), category (the tax and non-tax totals), head (a receipt adding into a category) or component (a part of a head) | - |
| status | string | final, revised or provisional, as the source marks the year | - |
| value | float64 | Amount collected, in the unit named alongside | - |
| unit | string | ksh_million | - |
import imibare as imi
df = imi.load("ke.knbs.government-revenue.annual")
print(df.head()) import duckdb
duckdb.sql("""
ATTACH 'https://catalog.cloudflarestorage.com/imibare-data'
AS imi (TYPE ICEBERG, READ_ONLY)
""")
duckdb.sql("SELECT * FROM imi.ke_knbs_government-revenue_annual LIMIT 10").show() curl -L "https://api.imibare.org/v1/data/ke.knbs.government-revenue.annual/download" \
-o "ke.knbs.government-revenue.annual.parquet" # List all datasets
curl "https://api.imibare.org/v1/datasets"
# Get metadata for this dataset
curl "https://api.imibare.org/v1/datasets/ke.knbs.government-revenue.annual" Every version is a change in the data, and every one is retained; snapshots are never overwritten. Each entry is a dated Parquet snapshot in the dataset's versions/ archive.
- 2026-08-17 Aug 17, 2026 LATEST161 rows · 8.5 KB · initial version
imibare contributors. (2026). National Government Revenue [Data set]. imibare. v2026-08-17. https://imibare.org/datasets/ke.knbs.government-revenue.annual
@dataset{imibare_ke_knbs_government-revenue_annual, author = {imibare contributors}, title = {National Government Revenue}, year = {2026}, publisher = {imibare}, version = {v2026-08-17}, url = {https://imibare.org/datasets/ke.knbs.government-revenue.annual} }
imibare contributors. National Government Revenue. v2026-08-17. imibare, 2026. https://imibare.org/datasets/ke.knbs.government-revenue.annual.
imibare contributors. National Government Revenue. v2026-08-17, imibare, 2026, https://imibare.org/datasets/ke.knbs.government-revenue.annual.