Altostrat Studio is here — the AI-native network operations IDE for engineers running production. Terminal, diagrams, runbooks, and Copilot in one workspace. Get started →
curl --request POST \
--url https://v1.api.altostrat.io/scans/cve/scan/multiple-ips \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"schedule_id": "9c43cc95-f313-49a3-b632-524f7a24503b",
"site_id": "9c3c1392-7f36-4240-85f2-273573c0384a",
"ips": [
"192.168.1.55",
"192.168.1.60"
]
}
'{
"scan_id": "9c46a6f1-a8d8-4f5a-9b2f-7d1b3e9c5a1d",
"scan_site_id": "9c46a6f1-b9e9-4f5a-9b2f-8e2c4f0d6b2e",
"target_ips": [
"192.168.1.55",
"192.168.1.60"
],
"message": "Scan started successfully"
}Initiates an immediate, on-demand scan for a specific list of IP addresses. This uses the configuration of an existing scan schedule but targets only the specified IPs within a particular site.
curl --request POST \
--url https://v1.api.altostrat.io/scans/cve/scan/multiple-ips \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"schedule_id": "9c43cc95-f313-49a3-b632-524f7a24503b",
"site_id": "9c3c1392-7f36-4240-85f2-273573c0384a",
"ips": [
"192.168.1.55",
"192.168.1.60"
]
}
'{
"scan_id": "9c46a6f1-a8d8-4f5a-9b2f-7d1b3e9c5a1d",
"scan_site_id": "9c46a6f1-b9e9-4f5a-9b2f-8e2c4f0d6b2e",
"target_ips": [
"192.168.1.55",
"192.168.1.60"
],
"message": "Scan started successfully"
}Documentation Index
Fetch the complete documentation index at: https://altostrat.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
Enter your bearer token in the format: Bearer {token}
Details of the scan to initiate.
The ID of the schedule whose configuration will be used for the scan.
"9c43cc95-f313-49a3-b632-524f7a24503b"
The ID of the site where the target IP addresses are located.
"9c3c1392-7f36-4240-85f2-273573c0384a"
A list of specific IPv4 addresses to scan.
["192.168.1.55", "192.168.1.60"]The multi-IP scan has been created and queued for execution.
The unique identifier for the newly created parent scan object.
"9c46a6f1-a8d8-4f5a-9b2f-7d1b3e9c5a1d"
The unique identifier for this specific site scan instance.
"9c46a6f1-b9e9-4f5a-9b2f-8e2c4f0d6b2e"
["192.168.1.55", "192.168.1.60"]"Scan started successfully"
Was this page helpful?