BizKitHub
DocsAPI ReferenceIssue/bff/issue/statistics
getIssueAdmin BFF

/bff/issue/statistics

Returns issue counts grouped by status category, total non-spam count, and spam count. Useful for dashboard widgets and overview panels.

IssuegetBffIssueStatistics

Parameters

1 query

Query parameters

· 1
projectCodestringOptional

Filter by project key.

ExamplePROJ

Response schema

1 status code documented

200Success
byCategoryobjectRequired

Issue count per status category code (e.g. { "new": 5, "progress": 3 }).

spamCountnumberRequired

Total spam issues.

totalCountnumberRequired

Total non-spam issues.

Response example

application/json
{
  "byCategory": {},
  "spamCount": 0,
  "totalCount": 0
}

Request example

GET /bff/issue/statistics

get
curl -X GET "https://api.bizkithub.com/bff/issue/statistics?projectCode=PROJ" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY"

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key