curl https://api.phanomcloud.online/bots \
-H "Authorization: Bearer sess_..."
const res = await fetch("https://api.phanomcloud.online/bots", {
headers: { Authorization: "Bearer sess_..." }
});
const { data } = await res.json();
import requests
r = requests.get(
"https://api.phanomcloud.online/bots",
headers={"Authorization": "Bearer sess_..."}
)
print(r.json())
{
"success": true,
"data": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "my-discord-bot",
"language": "nodejs",
"status": "online",
"memory": 256,
"vcpu": 0.5,
"startup_command": "node index.js",
"subdomain": "my-discord-bot",
"created_at": "2025-01-01T00:00:00Z"
}
]
}
Bots
List Bots
Returns all bots belonging to the authenticated user.
GET
/
bots
curl https://api.phanomcloud.online/bots \
-H "Authorization: Bearer sess_..."
const res = await fetch("https://api.phanomcloud.online/bots", {
headers: { Authorization: "Bearer sess_..." }
});
const { data } = await res.json();
import requests
r = requests.get(
"https://api.phanomcloud.online/bots",
headers={"Authorization": "Bearer sess_..."}
)
print(r.json())
{
"success": true,
"data": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "my-discord-bot",
"language": "nodejs",
"status": "online",
"memory": 256,
"vcpu": 0.5,
"startup_command": "node index.js",
"subdomain": "my-discord-bot",
"created_at": "2025-01-01T00:00:00Z"
}
]
}
Response
boolean
Always
true on success.array
Array of bot objects.
Show Bot object
Show Bot object
string
UUID of the bot.
string
Bot name.
string
Runtime:
nodejs, python, java, go, rust.string
offline, starting, online, stopping, or error.number
Allocated RAM in MB.
number
Allocated vCPU (1 vCPU per 512 MB).
string
Command used to start the bot.
string | null
Custom subdomain if configured.
string
ISO 8601 creation timestamp.
curl https://api.phanomcloud.online/bots \
-H "Authorization: Bearer sess_..."
const res = await fetch("https://api.phanomcloud.online/bots", {
headers: { Authorization: "Bearer sess_..." }
});
const { data } = await res.json();
import requests
r = requests.get(
"https://api.phanomcloud.online/bots",
headers={"Authorization": "Bearer sess_..."}
)
print(r.json())
{
"success": true,
"data": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "my-discord-bot",
"language": "nodejs",
"status": "online",
"memory": 256,
"vcpu": 0.5,
"startup_command": "node index.js",
"subdomain": "my-discord-bot",
"created_at": "2025-01-01T00:00:00Z"
}
]
}
⌘I

