trello.searchCards uses Trello search syntax with an optional board filter.
automations/search-trello-cards.automation.ts
Returns
Signal<TrelloCard[]> for that page. Increase page to retrieve later results.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Search card names and descriptions across visible Trello boards.
trello.searchCards uses Trello search syntax with an optional board filter.
import { automation, onDashboardRun } from "automate.ax"
import { trello } from "automate.ax/trello"
export default automation("Find launch cards", () => {
onDashboardRun({ title: "Find launch cards" })
trello.searchCards({
query: "launch due:week",
boardIds: ["board-id"],
partial: true,
})
})
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
query | string | Yes | None | Non-empty Trello query, including supported operators. |
boardIds | string[] | No | All visible boards | Restrict search to stable board IDs. |
limit | number | No | 50 | Cards per page, from 1 to 1,000. |
page | number | No | 0 | Zero-based page from 0 to 100. |
partial | boolean | No | false | Permit prefix matches rather than whole words. |
Second argument: { account } | Trello account reference | No | Project default | Account used to search. |
Signal<TrelloCard[]> for that page. Increase page to retrieve later results.