This project demonstrates how to interact with the Trello API using Postman. It includes a full set of CRUD operations for boards, lists, and cards, along with test scripts and environment variables.
- ✅ Create, Read, Update, and Delete Trello Boards
- ✅ Manage Lists and Cards within Boards
- ✅ Environment variables used for security (API Key & Token)
- ✅ Test scripts included to validate API responses
Tests were run using Postman's Collection Runner. All tests passed successfully.
The collection is neatly organized into folders and requests for each Trello feature:
- Board
- Create Board
- Get Created Board
- Update Board
- Delete Board
- List
- Create List
- Get Created List
- Update List
- Card
- Create Card
- Get Created Card
- Update Card
- Delete Card
- Clone this repository.
- Open Postman.
- Import the exported collection file (
Trello APIs.postman_collection.json). - Set up your environment with:
key: your Trello API Keytoken: your Trello Token
- Run the collection using the Collection Runner.
Trello APIs.postman_collection.json– Main Postman collectionscreenshots/– Folder with test result screenshots.env.example– Example file to show required environment variables
- You’ll need a Trello API Key and Token to run this project.
- Do not commit your real credentials.

