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

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# Get Workspace

> Get a Trello Workspace by ID or URL-safe name.

`trello.getWorkspace` retrieves one Workspace visible to the connected member.

```ts automations/get-trello-workspace.automation.ts theme={null}
import { automation, onDashboardRun } from "automate.ax"
import { trello } from "automate.ax/trello"

export default automation("Get Trello Workspace", () => {
  onDashboardRun({ title: "Get Trello Workspace" })
  trello.getWorkspace({ workspace: "engineering" })
})
```

Provide `workspace` as a stable Workspace ID or its URL-safe name. Optional second argument `{ account }` selects a Trello binding.

Returns `Signal<TrelloWorkspace>` with `id`, `name`, `displayName`, and nullable `lastActivityAt`, `url`, and `website`.
