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

> Get one Trello board by ID, short link, or URL.

`getBoard` loads normalized metadata for one board.

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

export default automation("Get Trello board", () => {
  onHttpRequest({ scope: "automation" })
  getBoard({ board: "https://trello.com/b/abc123/launch" })
})
```

## Inputs

`board: string` is required and accepts a board ID, short link, or standard board URL. Optional `account` selects the Trello binding and defaults to the project account.

## Output

Returns `Signal<TrelloBoard>` with `id`, `name`, `description`, `closed`, `organizationId`, `url`, `shortUrl`, `lastActivityAt`, `starred`, and `subscribed`.
