Software
Lists all available softwares and base images.
This endpoint shows which softwares can be pre-installed when creating machines and which base images can be used as the operating system foundation.
Headers
Authorization*
HMAC {key}:{signature}:{nonce}:{timestamp}
Content-Type
application/json
Response Fields
software
Array
Array of available software objects
software[].id
Integer
Software ID (use in software_ids array when creating machine)
software[].name
String
Software name
software[].size
Integer
Software size in bytes
base_images
Array
Array of available base image objects
base_images[].id
Integer
Base image ID (use in base_image_id when creating machine)
base_images[].name
String
Base image name (e.g., "Windows 11 Pro - Clean")
base_images[].size
Integer
Base image size in bytes
base_images[].type
String
Always "base_image"
client_code
Integer
Response code (200 for success)
message
String
Response message
timestamp
String
Response timestamp (ISO 8601)
Response Example
Usage
Software IDs: Use
software[].idvalues in thesoftware_idsarray parameter when callingPOST /machinesBase Image ID: Use
base_images[].idin thebase_image_idparameter when callingPOST /machinesDefault Base Image: If
base_image_idis not specified (null), the latest base image is automatically usedSize Considerations: When selecting software and base images, ensure the total size (with 5% buffer) fits within the plan's disk size
List of software and base images
200OK2026-02-05T10:10:22ZBad request
Not found
Permission required
GET /organization-management/v1/software HTTP/1.1
Host: api.vagon.io
Accept: */*
{
"client_code": 200,
"message": "OK",
"timestamp": "2026-02-05T10:10:22Z",
"software": [
{
"id": 1,
"name": "Blender",
"size": 1.4
}
],
"base_images": [
{
"id": 4225,
"name": "Windows 11 Pro",
"size": 8153,
"type": "base_image"
}
]
}Last updated