GET
/
project
/
{projectId}
/
results
/
overview
Get overview of a project
curl --request GET \
  --url https://app-preprod.cybedefend.com/project/{projectId}/results/overview
{
  "totalBySeverity": [
    [
      {
        "severity": "<string>",
        "count": 123
      }
    ]
  ],
  "totalByState": [
    [
      {
        "state": "<string>",
        "count": 123
      }
    ]
  ],
  "totalByAnalysisType": [
    [
      {
        "analysisType": "<string>",
        "count": 123
      }
    ]
  ],
  "vulnerabilitiesOverTime": [
    [
      {
        "date": "<string>",
        "severity": 123,
        "count": 123
      }
    ]
  ]
}

Path Parameters

projectId
string<uuid>
required

Response

Project overview

totalBySeverity
object[][]
required

Aggregation of vulnerabilities grouped by severity

totalByState
object[][]
required

Aggregation of vulnerabilities grouped by state

totalByAnalysisType
object[][]
required

Aggregation of vulnerabilities grouped by analysis type

vulnerabilitiesOverTime
object[][]
required

Number of vulnerabilities over time grouped by severity