Open the Cloud Agents console
Manage Agents, Environments, and Sessions in the browser.
Core concepts
Workflow
1
Define an Agent
Specify the model, system prompt, and available tools.
2
Configure an Environment
Choose the container type, networking policy, and preinstalled dependencies. New accounts do not have a pre-provisioned default environment — you must first
POST /api/v1/cloud/environments to create one.3
Start a Session
Bind an Agent and Environment to create a runtime instance.
4
Send message + Stream events
Send a
user.message to the Session and stream the Agent’s thinking, messages, and status changes over SSE (or fetch them via polling).Verify connectivity
When to use Cloud Agents
- Long-running asynchronous tasks — code review, large refactors, automated test generation.
- API integration — embed agent capabilities in backend services without maintaining a runtime.
- Batch processing — fan out parallel Sessions to handle bulk requests.
- Scheduled jobs — combine with a scheduler to run periodic inspections or reports.
Authentication
Every API request must include the following header:Create your PAT under “Settings → Personal Access Tokens” in the Qoder console. Treat it as a secret and do not commit it to source control.
Pagination
List endpoints use cursor-based pagination with this response shape:after_id and before_id query parameters to page through results.
FAQ
Q: Can I use Cloud Agents and the Qoder CLI at the same time? A: Yes. The CLI is best for local interactive development; Cloud Agents is best for automation and integration. They complement each other. Q: How many Sessions can a single Agent run concurrently? A: There is no hard limit. The same Agent configuration can back many active Sessions simultaneously. Q: How is data secured? A: Each Session runs in an isolated container sandbox; Sessions cannot reach one another. Data is wiped when the environment is destroyed.Next steps
Quickstart
Get your first Cloud Agent running in five steps.
Cloud Agents console
Manage Agents, Environments, and Sessions from the web UI.
Agent setup
Dive deeper into Agent configuration.
Cloud environment setup
Configure the runtime environment.
Start a session
Manage Session lifecycle.