Skip to main content

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.

Banner Phanom

What is PhanomCloud?

PhanomCloud is a cloud hosting platform for bots and applications. With our API you can create, start, stop, monitor and manage your bots programmatically — perfect for CI/CD pipelines, dashboards and automation tools.

Base URL

All API requests must be made to:
https://api.phanomcloud.online

Response Format

Every endpoint returns a JSON object in one of these two shapes:
{
  "success": true,
  "data": { ... },
  "message": "Optional human-readable message"
}

Quick Start

1

Get your session token

Authenticate via Discord OAuth2 and store your session_token.
2

Create a bot

Call POST /bots/create with your bot name, language and memory.
3

Upload your code

Upload a .zip or .rar with your bot files via POST /bots/:id/upload.
4

Start the bot

Call POST /bots/start and your bot will be running in seconds.

Supported Languages

LanguageValue
Node.jsnodejs
Pythonpython
Javajava
Gogo
Rustrust

Bot Status Reference

StatusDescription
offlineBot is stopped
startingContainer is being created and launched
onlineBot is running normally
stoppingBot is in the process of shutting down
errorBot failed to start