Skip to main content
GET
/
{scanSchedule}
/
status
Get Latest Scan Status for Schedule
curl --request GET \
  --url https://api.altostrat.io/scans/cve/{scanSchedule}/status \
  --header 'Authorization: Bearer <token>'
{
  "targets": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ],
  "scanned": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ],
  "failed": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ]
}

Authorizations

Authorization
string
header
required

Authentication token obtained via Altostrat platform login.

Path Parameters

scanSchedule
string<uuid>
required

The UUID of the Scan Schedule.

Response

Status of the latest scan run. Returns empty array if no scan has run.

Provides lists of sites involved in the latest scan run for a schedule.

targets
string<uuid>[]

List of site UUIDs attempted in the scan.

scanned
string<uuid>[]

List of site UUIDs successfully scanned (completed or failed after starting).

failed
string<uuid>[]

List of site UUIDs that failed to scan (e.g., unreachable, script error).

I