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

# List board cards

> List cards across every list on a Trello board.

`trello.listBoardCards` lists cards across every list on one board.

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

export default automation("List Trello board cards", () => {
  onDashboardRun({ title: "List Trello board cards" })
  trello.listBoardCards({ board: "board-id", filter: "open", limit: 100 })
})
```

Provide `board` as an ID, short link, or standard board URL. `filter` accepts `"open"`, `"closed"`, or `"all"` and defaults to `"open"`. `limit` is an integer from 1 through 1,000 and defaults to `100`. Optional `before` and `since` accept a card ID or timestamp cursor. Optional second argument `{ account }` selects a Trello binding.

Returns `Signal<TrelloCard[]>` in Trello's provider order.
