CentralCSP
APITechnologies

Get the technologies summary

Returns how many library versions are detected on the website, how many are vulnerable, and their breakdown by severity and lifecycle status. newDigestsPaused tells you the website sent more new scripts today than are analyzed per day, so some libraries will only show up tomorrow.

Requires the viewer role on the website and the sbom plan feature.

GET
/v1/workspaces/{workspaceId}/websites/{websiteId}/technologies/summary

Authorization

AuthorizationBearer <token>

An OpenID Connect access token issued by Keycloak, acting as the signed-in user.

In: header

Path Parameters

workspaceId*string
websiteId*string

Response Body

application/json

curl -X GET "https://example.com/v1/workspaces/string/websites/string/technologies/summary"
{  "technologies": 12,  "vulnerable": 3,  "bySeverity": {    "low": 0,    "medium": 0,    "high": 0,    "critical": 0  },  "byStatus": {    "good": 0,    "outdated": 0,    "dormant": 0,    "deprecated": 0,    "unknown": 0  },  "recognizedScripts": 15,  "newDigestsPaused": true}