/api/v1/vulnerabilities
POST /vulnerabilities/scan — trigger a scan
Starts a vulnerability scan. You can scope it to a specific provider or resource, or run it across all providers.Request body (optional)
Scope the scan to a specific provider.
Scope the scan to a specific resource.
Response 202
GET /vulnerabilities — list vulnerability findings
Returns a paginated list of vulnerability findings.Query parameters
Filter by provider.
Filter by resource.
Filter by severity:
critical, high, medium, or low.Filter by status:
open, fixed, or ignored.Filter by a specific CVE ID, for example
CVE-2024-12345.Page number.
Results per page. Maximum is 100.
Response
CVSS v3 base score (0.0–10.0).
The earliest package version that patches this vulnerability. May be
null if no fix is available.GET /vulnerabilities/ — get finding details
Returns full vulnerability details including the NVD description and reference links.PATCH /vulnerabilities/ — update status
Update the status of a vulnerability finding, for example to mark it as ignored.Request body
New status:
open, fixed, or ignored.Reason for the status change. Required when setting
ignored.