Postman VS Code extension
The Postman VS Code extension enables you to develop and test your APIs in Postman directly from Visual Studio Code. This streamlines your development workflow because you can quickly test your APIs in the same application you're using to develop. You can also use the extension to organize your API requests in Postman Collections, and share them with your team using workspaces.
Postman desktop agent
If you are using the Postman web client, you will need to also download the Postman desktop agent. The Postman agent overcomes the Cross-Origin Resource Sharing (CORS) limitations of browsers, and facilitates API request sending from your browser version of Postman. Read the blog post.
Postman CLI
New!
The Postman CLI is the command-line companion that is developed, supported, and signed by Postman. It enables you to run collections, lint API schemas, run security and governance checks, and log in and out. All test results will be automatically pushed to the app.
Windows installation
powershell.exe -NoProfile -InputFormat None -ExecutionPolicy AllSigned -Command "[System.Net.ServicePointManager]::SecurityProtocol = 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://dl-cli.pstmn.io/install/win64.ps1'))"
Mac (Apple silicon) installation
curl -o- "https://dl-cli.pstmn.io/install/osx_arm64.sh" | sh
Mac (Intel) installation
curl -o- "https://dl-cli.pstmn.io/install/osx_64.sh" | sh
Linux installation
curl -o- "https://dl-cli.pstmn.io/install/linux64.sh" | sh
Postman Canary
Be the first to experience new Postman features
If you want to be first in line to experience new features, download our latest Canary builds available for a sneak peek. They are designed for early adopters, and may sometimes break.
Newman command line tool
Newman is a command-line collection runner for Postman. It allows you to effortlessly run and test a Postman Collection directly from the command-line. It is built with extensibility in mind so that you can easily integrate it with your continuous integration servers and build systems.
npm install -g newman