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

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

`getCard` loads the current normalized card, including assignments, labels, schedule, and location.

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

export default automation("Get Trello card", () => {
  onHttpRequest({ scope: "automation" })
  getCard({ card: "https://trello.com/c/abc123/ship-it" })
})
```

Required `card` accepts an ID, short link, or standard card URL. Optional `account` defaults to the project binding.

Returns `Signal<TrelloCard>` with IDs and URLs, name and description, board and list IDs, archive/watch state, ordering position, `Date | null` schedule and activity fields, due completion, member IDs, and normalized labels.
