Get aggregated project counts

get/projects/summary

Returns aggregated project counts grouped by the specified field. This endpoint is used to retrieve summary statistics about projects without fetching full project details.

Request Samples

Response Samples

1[
2 {
3 "category": "classification",
4 "count": 8
5 },
6 {
7 "category": "regression",
8 "count": 12
9 },
10 {
11 "category": "unknown",
12 "count": 3
13 }
14]

Query Parameters

NameTypeRequiredDescription
filter
string<filter-criteria>
false

The criteria for filtering the projects before aggregation. For more information, see Filtering in REST APIs.

groupBy
string
true

The field to group the project counts by. Supported values are function, status, and publishStatus.

Allowed values:
functionstatuspublishStatus

Responses

StatusMeaningDescription
200OK

The request succeeded. An array of summary items was returned.

HeadersSchema
400Bad Request

The request was invalid. The groupBy parameter is missing or contains an unsupported value.

Schema