Skip to main content
POST
/
scans
/
cve
/
scheduled
/
single-ip
Start On-Demand Single-IP Scan
curl --request POST \
  --url https://api.altostrat.io/scans/cve/scheduled/single-ip \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "schedule_id": "9c43cc95-f313-49a3-b632-524f7a24503b",
  "site_id": "9c3c1392-7f36-4240-85f2-273573c0384a",
  "ip_address": "192.168.1.55"
}'
{
  "scan_id": "9c46a6f1-a8d8-4f5a-9b2f-7d1b3e9c5a1d",
  "status": "pending",
  "ip_address": "192.168.1.55",
  "site_id": "9c3c1392-7f36-4240-85f2-273573c0384a",
  "created_at": "2025-10-29T14:00:00Z",
  "message": "Scan initiated. Check back for results."
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Details of the scan to initiate.

schedule_id
string<uuid>
required

The ID of the schedule whose configuration will be used for the scan.

Example:

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

site_id
string<uuid>
required

The ID of the site where the target IP address is located.

Example:

"9c3c1392-7f36-4240-85f2-273573c0384a"

ip_address
string<ipv4>
required

The specific IPv4 address to scan.

Example:

"192.168.1.55"

Response

The single-IP scan has been accepted and is pending execution.

scan_id
string<uuid>

The unique identifier for the newly created parent scan object.

Example:

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

status
string

The initial status of the scan request.

Example:

"pending"

ip_address
string<ipv4>

The IP address that was targeted.

Example:

"192.168.1.55"

site_id
string<uuid>

The site ID that was targeted.

Example:

"9c3c1392-7f36-4240-85f2-273573c0384a"

created_at
string<date-time>

Timestamp of when the scan was initiated.

Example:

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

message
string

A confirmation message.

Example:

"Scan initiated. Check back for results."