Every command available in the Universe interactive console is also available over HTTP through theDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/ohemilyy/universe/llms.txt
Use this file to discover all available pages before exploring further.
POST /api/commands/execute endpoint. The Master node captures the command output and returns it as a JSON array of strings, making it easy to integrate cluster management into external tooling.
POST /api/commands/execute
Executes a single console command and returns all output lines produced by that command. Request bodyThe full command string, exactly as you would type it in the interactive console. For example:
"instance list" or "instance create default".The command string that was executed, echoed back for reference.
Ordered list of output lines produced by the command. Empty array if the command produces no output.
Examples
Notes
All commands that work in the interactive console work here. The full list is in the console commands reference.
Command output is captured from a
CapturingCommandSource that collects every sendMessage call. Commands that produce no output return an empty output array, not an error.