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

# Workspace Management

### Overview

<Info>
  **Prerequisites:**

  * This feature is available with the [**Paradime Enterprise pack**](https://www.paradime.io/enterprise).
  * Your API keys ***must*** have either User Management Admin or User Metadata Viewer capabilities.
</Info>

<Info>
  These examples authenticate with an **account API key** (`api_secret="prdm_cmp_..."` plus `workspace_uid`), which requires `paradime-io` 6.0.0 or later. Legacy **workspace API keys** (`api_key` + `api_secret`) are still supported. See Getting Started.
</Info>

The Workspace Management module enables you to list all the currently active workspaces within the Paradime account.

### Get all workspaces

Retrieves all active workspaces.

<Tabs>
  <Tab title="Args">
    **`none`**
  </Tab>

  <Tab title="Returns">
    *`List[Workspace]`*: A list of active workspaces
  </Tab>
</Tabs>

```python theme={"system"}
# First party modules
from paradime import Paradime

# Create a Paradime client with your API credentials
paradime = Paradime(api_endpoint="API_ENDPOINT", api_secret="prdm_cmp_...", workspace_uid="WORKSPACE_UID")

# Get all workspaces
workspaces = paradime.workspaces.list_all()
```


## Related topics

- [MCP Server](/products/dino-ai/mcp-server/index.md)
- [Workspace Management API](/developers/graphql-api/api-reference/workspace-management-api.md)
- [Python SDK](/developers/python-sdk/index.md)
- [Authentication](/developers/graphql-api/authentication.md)
- [GraphQL API](/developers/graphql-api/index.md)
