Documentation Index
Fetch the complete documentation index at: https://docs.phanomcloud.online/llms.txt
Use this file to discover all available pages before exploring further.
Path Parameters
UUID of the bot. Must be online.
Body
Command to execute inside the container. Example: ls -la or node -e "console.log(process.version)".
The bot must be online to use this endpoint. Commands have a 30-second timeout. The command is split by whitespace — no shell injection is possible.
curl -X POST https://api.phanomcloud.online/bots/3fa85f64-5717-4562-b3fc-2c963f66afa6/console \
-H "Authorization: Bearer sess_..." \
-H "Content-Type: application/json" \
-d '{ "command": "ls -la" }'
{
"success": true,
"data": {
"output": "total 48\ndrwxr-xr-x 5 root root 4096 Jan 15 10:00 .\ndrwxr-xr-x 3 root root 4096 Jan 15 09:00 ..\n-rw-r--r-- 1 root root 1234 Jan 15 09:30 index.js\n-rw-r--r-- 1 root root 567 Jan 15 09:30 package.json\n"
}
}