Postman is a complete API development environment used by developers at every stage of building APIs — from writing and testing initial requests to running automated test suites, generating documentation, and monitoring production endpoints. It started as a Chrome browser extension and quickly became one of the most widely used API tools in the world. Postman is trusted by teams across startups and enterprises alike to test REST, GraphQL, and WebSocket APIs, and to run automated collections in CI/CD pipelines.
Today, Postman is a native desktop application built on Electron, available for macOS, Linux, and Windows. The Chrome app version has been deprecated, so the Snap package is the recommended way to install it on Ubuntu.
This guide shows you how to install Postman on Ubuntu 18.04 and make your first API request.
<strong>Prerequisite:</strong> You need sudo access.
The easiest way to install Postman on Ubuntu 18.04 is via the Snap packaging system. Snap packages are self-contained, update automatically in the background, and always give you the latest stable version.
Open your terminal and run:
bashsudo snap install postman
Once the download finishes, you will see:
postman 6.7.1 from 'postman-inc' installed
Postman is installed and ready to use. If you prefer a graphical approach, you can also find it in the Ubuntu Software Center by searching for “Postman” and clicking Install.
Launch Postman from the application menu via Activities > Postman, or run postman in your terminal.
Snap packages update automatically, but you can manually trigger an update with sudo snap refresh postman. To uninstall Postman completely, run sudo snap remove postman.
The first time you open Postman, a sign-in screen appears. You can create a free account, log in with an existing one, or skip login entirely. Creating an account unlocks several useful features:
If you do not want to create an account right now, click “Skip signing in and take me straight to the app”. All local features remain fully available.
To confirm Postman is working, send a simple GET request to a public test API.
In the Untitled Request tab, enter the following URL:
https://reqres.in/api/users
Leave the method set to GET and click Send. The response panel at the bottom displays a JSON object containing a paginated list of users. That confirms Postman can successfully send requests and parse API responses.
From here, explore the Postman Learning Center to learn about Collections (groups of saved requests), Environments (variable sets for switching between dev, staging, and production), and Test Scripts (automated assertions that run after each request).
Postman is now installed on your Ubuntu 18.04 machine. Visit the Postman Learning Center to explore workspaces, collections, environment variables, and automated testing. Leave a comment below if you run into any issues.
PHP 8.5 is included in Ubuntu 26.04's default repositories and is the recommended version for…
Ubuntu 26.04 LTS "Resolute Raccoon" arrived on April 23, 2026 with Linux kernel 7.0, GNOME 50,…
Kubernetes is the standard platform for running containerized workloads across multiple servers with self-healing, rolling…
Ubuntu 26.04 LTS "Resolute Raccoon" was released on April 23, 2026 with Linux kernel 7.0, GNOME desktop, and standard security support until April 2031. A clean install gives you a known-good starting point on new hardware, when replacing another operating system, or when an upgrade path is not practical. This guide walks through how to install Ubuntu 26.04: downloading and verifying the ISO, writing a bootable USB drive, completing the installer, and doing the initial setup after the first boot. Before you start: You need a USB drive with at least 12 GB of free space. Back up any existing data on the target machine — the installer can erase the entire disk. Install Ubuntu 26.04: Download the ISO…
The correct timezone affects more than the clock on your screen. It drives cron job scheduling, systemd timer execution, log file timestamps, database record timing, and SSL certificate validity checks. A mismatched timezone can cause scheduled jobs to fire at the wrong hour and make log timestamps impossible to match with real-world events. This guide shows how to change timezone on Ubuntu using the timedatectl command (the recommended approach for servers and remote machines) and through the graphical Date & Time settings on desktop systems. The steps apply to all current Ubuntu releases including 24.04 and 26.04. <strong>Prerequisite:</strong> Only the root user or a user with sudo access can change the system timezone. Check the Current Timezone Before You Change It Run timedatectl with no arguments to see the active timezone and clock status: bashtimedatectl Sample output: Local…
Atom is a free, open-source, cross-platform code editor developed by GitHub. Built on Electron, it uses…