Get cards on a board
get_cardsRetrieve Trello cards from a board with optional list or label filters, displaying key details for each.
Instructions
Get cards on a board, optionally narrowed to one list or one label. board_id comes from list_boards; list_id (optional) comes from get_lists; label (optional) is a label NAME as shown by get_labels, matched case-insensitively. include_archived defaults to false, limit defaults to 50. Each card comes back trimmed: id, name, list, labels, due, url and a shortened description — call get_card for the full card with comments and checklists.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| label | No | Only return cards carrying a label with this name (case-insensitive). | |
| limit | No | Maximum cards to return. Defaults to 50. | |
| list_id | No | Only return cards in this list (from get_lists). | |
| board_id | Yes | Board id, as returned by list_boards. | |
| include_archived | No | Include archived cards. Defaults to false. |