
Getting Started Guide
How to Use Postman
A practical guide to get you up and running with Postman. Written by Delv Editorial, Delv Team.
Getting started with Postman
In this guide, you will learn how to set up Postman and create your first API request. By the end, you'll be ready to explore API testing and documentation features.Step 1: Sign up and set up
- Go to Postman’s website.
- Click on the “Sign Up” button in the top right corner.
- Choose to sign up with your email or via a Google or GitHub account.
- Follow the prompts to create your account. The free tier allows you to access basic features, which is perfect for getting started.
- Once signed in, you will be taken to the Postman dashboard.
Step 2: Your first API request
- On the dashboard, click the “New” button in the top left.
- Select “HTTP Request” from the menu.
- In the request tab that opens, enter the API endpoint URL you want to test (e.g.,
https://jsonplaceholder.typicode.com/posts). - Select the request method from the dropdown (GET is the default for fetching data).
- Click the “Send” button. You will see the response in the lower section of the screen, including the status code and data returned.
Step 3: Get better results
- Use the “Params” tab to add query parameters if needed. This allows you to customise your request easily.
- Explore the “Tests” tab to write simple JavaScript snippets that validate the response. For example, check if the status code is 200 by adding
pm.test("Status code is 200", function () { pm.response.to.have.status(200); }); - Save your request by clicking the “Save” button at the top right and organising it into a collection for easy access later.