DocsAPI ReferenceTransaction/bff/transaction/category-list
getTransactionAdmin BFF

/bff/transaction/category-list

Returns all transaction categories with aggregated income, expense, and net totals. Useful for a breakdown chart or category filter in the transaction list.

TransactiongetBffTransactionCategory-list

No parameters

This endpoint takes no path, query, header or body parameters.

Request

GET /bff/transaction/category-list

get
curl -X GET "https://api.bizkithub.com/bff/transaction/category-list" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

JSON payload

{
  "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
    }
  ]
}

All response codes

1 status code documented

Need an API key?

All BizKitHub API endpoints require authentication via API key.

Get API Key