Catalog Apps Summary
GET /catalog-apps/summary
Returns aggregate counts for the shared application catalog: total apps, categories, and vendors. Use this endpoint to power overview cards or health indicators on admin dashboards that show the size of the catalog.
This endpoint is not scoped to a client -- the catalog is shared across all clients.
Response
Returns a CatalogAppsSummary object.
Example Request
curl -X GET "https://api.example.com/v2/catalog-apps/summary" \
-H "Authorization: Bearer YOUR_API_TOKEN"
Example Response
{
"app_count": 4231,
"category_count": 47,
"vendor_count": 1892
}
CatalogAppsSummary
| Field | Type | Description |
|---|---|---|
app_count | number | Total number of applications in the catalog |
category_count | number | Total number of application categories |
vendor_count | number | Total number of application vendors |
Error Responses
| Status | Description |
|---|---|
| 401 | Authentication required |
| 500 | Server error |
Related Endpoints
- List Catalog Apps -- Paginated list of catalog apps
- Catalog Vendors -- Vendor list
- Catalog Categories -- Category list