--- title: 'Trello' description: 'Manage boards, lists, and cards with the Trello API.' --- # Trello Manage boards, lists, and cards with the Trello API. | Detail | Value | |---|---| | Category | Project Management | | Base URL | `https://trello.com/1` | | Authentication | API Key (Query) | | Endpoints | 6 | | Connector key | `trello` | ## Using Trello in a workflow 1. Go to **Connections** and click **New Connection**. 2. Pick **Trello** from the marketplace. 3. Enter your credentials (see Authentication above for what's expected). 4. In a workflow, drop an **API Call** node and select this connection. 5. Pick the operation you need from the Operation dropdown — see the table below. ## Available Endpoints | Endpoint | Summary | |---|---| | [GET /members/me/boards](./get_members_me_boards_pm_listboards) | List boards for the authenticated user | | [GET /boards/{id}/lists](./get_boards_id_lists_pm_getboardlists) | Get lists on a board | | [GET /boards/{id}/cards](./get_boards_id_cards_pm_getboardcards) | Get cards on a board | | [POST /cards](./post_cards_pm_createcard) | Create a new card | | [PUT /cards/{id}](./put_cards_id_pm_updatecard) | Update a card | | [POST /cards/{id}/actions/comments](./post_cards_id_actions_comments_pm_addcomment) | Add a comment to a card | > Each endpoint has its own page with parameter details, an example > `API Call` node configuration, and the response shape.