Skip to main content

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

FieldTypeDescription
app_countnumberTotal number of applications in the catalog
category_countnumberTotal number of application categories
vendor_countnumberTotal number of application vendors

Error Responses

StatusDescription
401Authentication required
500Server error