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/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."
}Initiates an immediate, on-demand scan for a single IP address. This uses the configuration of an existing scan schedule but targets only the specified IP within a particular site.
curl --request POST \
--url https://v1.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."
}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 address is located.
"9c3c1392-7f36-4240-85f2-273573c0384a"
The specific IPv4 address to scan.
"192.168.1.55"
The single-IP scan has been accepted and is pending execution.
The unique identifier for the newly created parent scan object.
"9c46a6f1-a8d8-4f5a-9b2f-7d1b3e9c5a1d"
The initial status of the scan request.
"pending"
The IP address that was targeted.
"192.168.1.55"
The site ID that was targeted.
"9c3c1392-7f36-4240-85f2-273573c0384a"
Timestamp of when the scan was initiated.
"2025-10-29T14:00:00Z"
A confirmation message.
"Scan initiated. Check back for results."
Was this page helpful?