### Fetch User Boards using cURL Source: https://support.atlassian.com/trello/docs/getting-started-with-trello-rest-api This example demonstrates how to retrieve a list of all boards associated with a Trello user account using a GET request to the Trello API. It utilizes cURL for command-line execution and requires your Trello API key and token for authentication. The response is expected in JSON format. ```bash curl 'https://api.trello.com/1/members/me/boards?key={yourKey}&token={yourToken}' ``` -------------------------------- ### Send HTTP Request and Post Comment (Trello Automation) Source: https://support.atlassian.com/trello/docs/issuing-http-requests This example demonstrates how to use Trello's automation to perform a GET request to a specified URL and then post a comment on a card using data extracted from the JSON response. It shows how to access nested properties and array elements from the `{httpresponse}` variable. ```Trello Automation get url "https://example.com/movie-search?q={cardname}", and post comment "Result count: {httpresponse.relatedMovies.length} \n\n First result: {httpresponse.relatedMovies[0].title}" ``` -------------------------------- ### Additional Trello API Call Examples using cURL Source: https://support.atlassian.com/trello/docs/getting-started-with-trello-rest-api This section provides cURL commands for several other common Trello API operations, including fetching boards within an organization, retrieving all cards on a board, and listing users in a Trello Enterprise. These examples showcase the versatility of the Trello API for managing workspace data. ```bash curl 'https://api.trello.com/1/members/me/organizations/{organizationId}/boards' ``` ```bash curl 'https://api.trello.com/1/boards/{boardId}/cards?key=APIKey&token=APIToken' ``` ```bash curl 'https://api.trello.com/1/enterprises/{enterpriseId}/members/query?key=APIKey&token=APIToken' ```