The Agents API is the core of Nora. You use it to deploy new agent containers, control their lifecycle (start, stop, restart, redeploy, delete), poll live resource stats, and retrieve the gateway UI URL for direct browser access. All endpoints require authentication and operate only on agents that belong to your account.Documentation Index
Fetch the complete documentation index at: https://noradocs.solomontsao.com/llms.txt
Use this file to discover all available pages before exploring further.
An agent moves through the following statuses:
queued → running. From running it can transition to warning, error, or stopped. Use POST /agents/:id/redeploy to recover an agent that is in warning, error, or stopped state.List agents
Returns all agents belonging to the authenticated user, ordered by creation time (newest first).Deploy an agent
Create and queue a new agent for deployment. The agent record is created immediately with statusqueued; the actual container is started asynchronously by the deployment worker.
Request body
Human-readable agent name. Maximum 100 characters. Control characters are stripped. Defaults to
OpenClaw-Agent-<random>.Sandbox type.
standard (Docker) or nemoclaw (NVIDIA NemoClaw). The nemoclaw option requires NEMOCLAW_ENABLED=true on the server.Number of virtual CPUs. Ignored on PaaS deployments (locked to subscription). On self-hosted, clamped to operator limits.
RAM allocation in MB. Ignored on PaaS. Minimum
512.Disk allocation in GB. Ignored on PaaS. Minimum
1.Response
Returns the newly created agent record.UUID of the new agent.
Agent display name.
queued — deployment is pending.standard or nemoclaw.Allocated vCPU count.
Allocated RAM in MB.
Allocated disk in GB.
Scheduler node assigned to this agent.
Docker container name.
ISO 8601 creation timestamp.
| Status | Condition |
|---|---|
400 | Name too long or NemoClaw not enabled |
402 | Billing limit reached |
Get agent
Fetch a single agent by ID. The status is reconciled against the live container state on every call — if the container has stopped unexpectedly the stored status is updated before the response is returned.Path parameters
Agent UUID.
Start agent
Start a stopped agent’s existing container.Path parameters
Agent UUID.
status: "running".
| Status | Condition |
|---|---|
400 | Agent has no container — redeploy first |
404 | Agent not found |
Stop agent
Gracefully stop a running agent’s container. The status is set tostopped regardless of whether the container was already stopped.
Path parameters
Agent UUID.
status: "stopped".
Restart agent
Restart a running agent’s container in place (does not redeploy).Path parameters
Agent UUID.
Response
true when the container was restarted.| Status | Condition |
|---|---|
400 | Agent has no container — redeploy first |
Redeploy agent
Re-queue an agent for a full redeploy. Only available when the agent is inwarning, error, or stopped state. Clears the existing container reference and submits a new deployment job.
Path parameters
Agent UUID.
Response
true when the redeploy job was queued.queued.| Status | Condition |
|---|---|
400 | Agent is not in warning, error, or stopped state |
Delete agent
Permanently delete an agent and destroy its container.Path parameters
Agent UUID.
Response
true when the agent was deleted.Get live stats
Return a single real-time resource snapshot from the running container. Polls the Docker daemon directly.Path parameters
Agent UUID.
Response
CPU utilisation as a percentage across all cores.
Actual memory usage in MB (excludes page cache).
Memory limit allocated to the container in MB.
Memory usage as a percentage of the limit.
Total received bytes across all network interfaces, in MB.
Total transmitted bytes across all network interfaces, in MB.
Total block device read bytes in MB.
Total block device write bytes in MB.
Number of processes running inside the container.
Seconds since the container last started.
Whether the container is currently running.
| Status | Condition |
|---|---|
409 | Agent has no container |
502 | Could not reach the Docker daemon |
Get stats history
Return time-series container stats stored by the background collector (sampled every 10 seconds, retained for 24 hours).Path parameters
Agent UUID.
Query parameters
Preset time window. One of
5m, 15m, 30m, 1h, 6h, 24h. Ignored when from and to are provided.ISO 8601 start timestamp for a custom range. Must be used together with
to.ISO 8601 end timestamp for a custom range. Must be used together with
from.CPU % at sample time.
Memory usage in MB at sample time.
Memory limit in MB.
Memory % at sample time.
Cumulative received MB at sample time.
Cumulative transmitted MB at sample time.
Cumulative disk read MB at sample time.
Cumulative disk write MB at sample time.
Process count at sample time.
ISO 8601 timestamp when the sample was recorded.
Get gateway URL
Resolve the HTTP URL of the agent’s embedded gateway control UI. The agent must be inrunning state.
Path parameters
Agent UUID.
Response
Full HTTP URL to the gateway UI, e.g.
http://localhost:32101.Resolved host port number.
| Status | Condition |
|---|---|
409 | Agent is not running, or has no container |
502 | Could not inspect the container to resolve the port |