Parameters
No parameters required
This endpoint takes no path, query, header or body parameters.
Returns all transaction categories with aggregated income, expense, and net totals. Useful for a breakdown chart or category filter in the transaction list.
No parameters required
This endpoint takes no path, query, header or body parameters.
1 status code documented
itemsobject[]RequiredTransaction category with aggregated financial data.
category_codestringRequiredCategory code identifier.
category_labelstringRequiredCategory display label.
currencystringRequiredCurrency code (e.g., "CZK").
colorstringRequiredCategory hex color (e.g., "#FF5733").
total_incomenumberRequiredSum of all incoming transactions in this category.
total_expensenumberRequiredSum of all outgoing transactions in this category.
transaction_countnumberRequiredNumber of transactions in this category.
net_totalnumberRequiredNet total (income + expense). Negative if expense > income.
{
"items": [
{
"category_code": "example_category_code",
"category_label": "example_category_label",
"currency": "example_currency",
"color": "example_color",
"total_income": 0,
"total_expense": 0,
"transaction_count": 0,
"net_total": 0
}
]
}GET /bff/transaction/category-list
curl -X GET "https://api.bizkithub.com/bff/transaction/category-list" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.