Skip to main content
GET
/
accounts
/
{account_id}
/
inventory_cves
cURL
curl --request GET \
  --url https://api.prd.rad.security/accounts/{account_id}/inventory_cves \
  --header 'Authorization: <api-key>'
{
  "entries": [
    {
      "affected_clusters_count": 123,
      "affected_images_count": 123,
      "affected_owner_uids": [
        "<string>"
      ],
      "affected_workloads_count": 123,
      "associated_images": [
        {
          "image_digest": "<string>",
          "image_name": "<string>",
          "image_repo": "<string>",
          "image_tag": "<string>"
        }
      ],
      "cluster_id": "<string>",
      "cve_name": "<string>",
      "data_source": "<string>",
      "epss_percentile": 123,
      "epss_score": 123,
      "first_seen_at": "<string>",
      "fixable": true,
      "fixed_in_version": "<string>",
      "in_use": true,
      "is_known_exploited": true,
      "last_seen_at": "<string>",
      "package_id": "<string>",
      "package_name": "<string>",
      "package_version": "<string>",
      "severity": "<string>"
    }
  ],
  "has_more": true,
  "total_count": 123
}

Authorizations

Authorization
string
header
required

Path Parameters

account_id
string
required

Account ID

Query Parameters

sort
string

Sort details in format: field:asc|desc. Allowed fields: cve_name, package_name, package_version, severity, in_use, is_known_exploited, epss_score, epss_percentile, first_seen_at, last_seen_at, affected_workloads_count, affected_images_count, affected_clusters_count. Default: affected_workloads_count:desc

q
string

Search phrase

limit
integer

Maximum number of results to return. Default: 100

offset
integer

Number of results to skip. Default: 0

filters
string

Filters in format: key1:value1,key2:value2

Response

OK

entries
object[]
has_more
boolean
total_count
integer