# List Wallet Sandboxes

> List Wallet Sandboxes is a paid API for AI agents from daytona.withzero.ai, price unknown, status unknown (last checked 2026-09-15).

Retrieves a list of sandboxes associated with the current wallet/account on Daytona's ephemeral sandbox platform.

## Facts

- Endpoint: GET https://daytona.withzero.ai/v1/wallet/sandboxes
- Price: price unknown
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Provider: daytona.withzero.ai
- Website: https://daytona.withzero.ai
- Canonical page: https://www.zero.xyz/c/daytona-withzero-ai-sandboxes-deef3828
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SBnUqpXljQprIusR_kixW

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability daytona-withzero-ai-sandboxes-deef3828
```

Example prompt: Show me all the Daytona sandboxes currently associated with my wallet so I can see which ephemeral dev environments I have active.

## When to prefer this

Use this endpoint when you need to enumerate all active or existing sandboxes tied to a wallet before performing operations like connecting to a port, deleting a sandbox, or checking sandbox status. Prefer this over individual sandbox lookup when you don't already have a sandbox ID.

## Known failure modes

- Unauthorized (401) if wallet credentials are missing or invalid
- Empty list returned if no sandboxes have been provisioned or all have expired
- Service unavailable (503) if Daytona infrastructure is down
- Rate limit exceeded if too many requests are made in a short window

## Output

Returns an object containing a list of sandbox records associated with the authenticated wallet, including sandbox IDs and metadata such as status, resource specs, and expiry for each provisioned ephemeral environment.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {},
 "description": "No body parameters required. The endpoint provisions a fixed-spec sandbox (1 CPU, 1 GB RAM, 30 minutes) with no configuration needed.",
 "additionalProperties": false
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/daytona-withzero-ai-sandboxes-deef3828/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from daytona.withzero.ai](https://www.zero.xyz/host/daytona.withzero.ai/llms.txt)
