Skip to main content
GET
/
scans
/
cve
List Scan Reports
curl --request GET \
  --url https://api.altostrat.io/scans/cve \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "9c46a6f1-a8d8-4f5a-9b2f-7d1b3e9c5a1d",
    "scan_schedule_id": "9c43cc95-f313-49a3-b632-524f7a24503b",
    "scan_id": "ABC-DEF-GHI",
    "targets": 1,
    "started_at": "2025-10-29T12:00:00Z",
    "finished_at": "2025-10-29T12:35:10Z",
    "runtime": "35 minutes",
    "average_score": 6.8,
    "highest_score": 9.8,
    "cve_count": 152,
    "unique_cves": 45,
    "open_ports": 210,
    "hosts_scanned": 55,
    "json_url": "<string>",
    "pdf_url": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Enter your bearer token in the format: Bearer {token}

Response

A list of scan report summaries.

id
string<uuid>

The unique identifier for this scan result object.

Example:

"9c46a6f1-a8d8-4f5a-9b2f-7d1b3e9c5a1d"

scan_schedule_id
string<uuid>

The ID of the schedule that triggered this scan.

Example:

"9c43cc95-f313-49a3-b632-524f7a24503b"

scan_id
string

A human-readable, unique identifier for the scan.

Example:

"ABC-DEF-GHI"

targets
integer

The total number of sites targeted by this scan.

Example:

1

started_at
string<date-time>

The timestamp when the scan started.

Example:

"2025-10-29T12:00:00Z"

finished_at
string<date-time>

The timestamp when the scan finished.

Example:

"2025-10-29T12:35:10Z"

runtime
string

A human-readable string representing the scan's duration.

Example:

"35 minutes"

average_score
number

The average CVSS score of all vulnerabilities found.

Example:

6.8

highest_score
number

The highest CVSS score of any vulnerability found.

Example:

9.8

cve_count
integer

The total number of vulnerability instances found.

Example:

152

unique_cves
integer

The number of unique CVEs found.

Example:

45

open_ports
integer

The total number of open ports discovered across all hosts.

Example:

210

hosts_scanned
integer

The number of unique hosts discovered and scanned.

Example:

55

json_url
string<uri>

A pre-signed URL to download the full scan report in JSON format. The URL is valid for 30 minutes.

pdf_url
string<uri>

A pre-signed URL to download a PDF summary of the scan report. The URL is valid for 30 minutes.