> ## Documentation Index
> Fetch the complete documentation index at: https://docs.plane.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Sandbox

> Sandboxes link a live workspace to an isolated test workspace

A sandbox is an isolated test workspace created from a live workspace. Use it to
create test API keys and exercise Plane integrations without touching live data.

### Attributes

<ResponseField name="id" type="string">
  Unique identifier for the sandbox, for example `sbx_3vNqM7xRk2pWsT`.
</ResponseField>

<ResponseField name="name" type="string">
  Human-readable sandbox name.
</ResponseField>

<ResponseField name="status" type="string">
  Current provisioning status. One of `provisioning` or `ready`.
</ResponseField>

<ResponseField name="workspace" type="string">
  ID of the live workspace that owns this sandbox.
</ResponseField>

<ResponseField name="sandbox_workspace" type="string">
  ID of the isolated test workspace created for this sandbox.
</ResponseField>

<ResponseField name="created" type="string">
  ISO 8601 timestamp of when the sandbox was created.
</ResponseField>

<ResponseField name="updated" type="string">
  ISO 8601 timestamp of the most recent sandbox update.
</ResponseField>

<ResponseExample>
  ```json Sandbox theme={null}
  {
    "id": "sbx_3vNqM7xRk2pWsT",
    "name": "Airfoil Sandbox",
    "status": "ready",
    "workspace": "wsp_4kW3GnQCo1CQ49",
    "sandbox_workspace": "wsp_test_9nD31mQzRa8kF2",
    "created": "2026-03-28T17:20:00Z",
    "updated": "2026-03-28T17:21:04Z"
  }
  ```
</ResponseExample>
