Pentest Reports Get structured report data for a pentest
GET
/api/pentests/{pentest_id}/report-data

Authentication

Bearer Token (BearerAuth)

Path Parameters

pentest_idstringrequired

Pentest identifier (e.g. covert-nova-tracks)


Headers

X-Target-Serverstringrequired

Internal IP and port of the pt-agent instance (e.g. 10.10.0.26:9741)


Responses

200
Report data

Example:

{
  "pentest_id": "string",
  "generated_at": "string",
  "targets": [
    "string"
  ],
  "total_targets": 0,
  "style": "string",
  "total_vulnerabilities": 0,
  "total_critical": 0,
  "total_high": 0,
  "total_medium": 0,
  "total_low": 0,
  "total_info": 0,
  "total_false_positives": 0,
  "total_verified": 0,
  "overall_risk_score": 0,
  "overall_risk_rating": "string"
}