> ## 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.

# Get a workspace

> Retrieves a workspace your API key can act on.

### Parameters

<ParamField path="id" type="string" required>
  The ID of the workspace to retrieve.
</ParamField>

### Returns

Returns the [Workspace object](/reference/workspaces/object) for the given ID if
your key manages it.

<ResponseExample>
  ```json Response theme={null}
  {
    "id": "wsp_8rT2mVq5xNp3Kd",
    "name": "Acme Inc",
    "status": "active",
    "customer": "cus_6wJm3RkQp9xT2v",
    "created": "2026-08-04T16:20:00Z",
    "updated": "2026-08-04T16:20:00Z"
  }
  ```
</ResponseExample>
