Skip to content

List sandboxes

GET/sandboxes
Responses
200 OKOK
ListResponse
sandboxesarray | null
items
SandboxResponse
created_atstringdate-time
idstring
memory_mibinteger
networkNetworkResponse
allowlistarray
items
string
enabledboolean
gatewaystring
guest_ipstring
profilestring
publishedarray
items
PortMapping
guest_portinteger
host_ipstring
host_portinteger
protocolstring
source_snapshot_idstring
vcpusinteger
workdirstring
Authentication
bearerAuthHTTP bearer. Daemon API key. Omit on a keyless loopback daemon.
Request
GET/sandboxes
cURL
curl '/sandboxes'
Response
200 OK
{
  "sandboxes": [
    {
      "created_at": "2026-01-02T15:04:05Z",
      "id": "string",
      "memory_mib": 0,
      "network": {
        "allowlist": [
          "string"
        ],
        "enabled": false,
        "gateway": "string",
        "guest_ip": "string"
      },
      "profile": "string",
      "published": [
        {
          "guest_port": 0,
          "host_ip": "string",
          "host_port": 0,
          "protocol": "string"
        }
      ],
      "source_snapshot_id": "string",
      "vcpus": 0,
      "workdir": "string"
    }
  ]
}
Was this page helpful?