Send Get request in Postman
Last Updated :
12 Dec, 2023
Postman is a well-known tool for doing Manual API Testing. It has lots of features and at the beginner level, it is used for testing the HTTP responses like GET, POST, PUT, and DELETE. In this article, we will discuss how to deal with Get requests in Postman.
What is GET Request?
This is an HTTP request which is sent to the server when something is to be retrieved from the server. Get request is safe as it does not change anything on the server. When the same Get request is sent to the server, the same result is expected.
Ways to Send GET Request
There are different ways to send a Get request. Some of the ways are listed below:
1. Using Sample APIs
For sending the GET response using Sample API we have to look for Sample APIs available in Google and the Next part, we will see how to implement this in Postman. Here are the below steps for implementing this.
Step 1: Click on the Link Here.
Step 2: Above is the Sample API which is free to use.
Step 3: You will see this kind of webpage is opening.
.jpg)
Step 4: Scroll down there you can see different types of Get Request

Step 5: Click on the 'List User' and Copy the request endpoint.

Step 6: Now open a new Tab in the Browser. Example: Google Chrome.
Step 7: Write down the Website URL and the request endpoint. and Hit enter.
https://reqres.in/api/users?page=2

Step 8: Now once you send the above URL you will get some response. You can see you are getting the same response which is already shown in the Sample API Page.
.jpg)

Only the GET request can be performed in the Browser, and the rest of the responses such as POST, PUT, and DELETE cannot be performed through the web browser.
2. Sending GET request Using Postman
The Prerequisite for using Postman is to have a setup on the machine.
Step 1: From the home screen of the postman click on 'Create Workspace'
Step 2: Click on 'Blank WorkSpace' and hit 'Next'.

Step 3: Give a Suitable name and Summary as per your choice and Make the visibility Personal. You can choose another type of Visibility as well.

Step 4: Now Create a New Collection.

Step 5: Just Rename it to 'Geeks Collection' or any other as per your Choice.

Step 6: Click on the Add Request to create a new request in the collection.

Step 7: Give any name as per your choice and you will see a new tab opened

Step 8: Copy the URL Paste it on the URL Section and hit send.
https://reqres.in/api/users?page=2

Step 9: We get some response which is similar to the response which we have seen in the Sample Api Website

Now, you can try the same by sending different GET requests from the Sample API Website and can do Practice.
Conclusion
Having Good hands-On experience on different HTTP Requests such as GET will provide many opportunities in the industry for the Developer and the Testers. Postman became the tool for smoothing the API Testing process. You need to continue exploring the different features of Postman that will help in the industry. Happy Testing and I hope that your Get request always gets the status code '200 OK'.
Similar Reads
Create and Send API Requests in Postman Postman serves as a flexible tool, simplifying the system of crafting and checking out API requests. In the world of software, APIs(Application Programming Interfaces) are the constructing blocks for packages to speak with each other. In this article, you will find out how Postman turns into your go
4 min read
How to create and send GET requests in Postman? Postman is an API(application programming interface) development tool which helps to build, test and modify APIs. It has the ability to make various types of HTTP requests(GET, POST, PUT, PATCH), saving environments for later use, converting the API to code for various languages(like JavaScript, Pyt
1 min read
Structure of HTTP request in Postman Postman is a powerful tool that simplifies the process of making HTTP requests for testing APIs. Understanding the structure of a typical HTTP request in Postman is fundamental for everyone who want to test endpoints. In this article, we'll break down the key components of an HTTP request in Postman
3 min read
How to set header request in Postman? Postman is a powerful API development tool that offers a feature known as environment variables. These variables are used for efficient testing and development of APIs by allowing users to manage dynamic values across requests easily. In this article, we will learn How you can set header requests in
2 min read
How to create and send POST requests in Postman? Postman is an API(application programming interface) development tool which helps to build, test and modify APIs. It can make various types of HTTP requests(GET, POST, PUT, PATCH), saving environments for later use, and convert save the API to code for various languages(like JavaScript, and Python).
2 min read
Sending Your First Request via Postman Postman is a tool that we are using for managing our APIs. It is used for sending the request to the server and then looking at the response from it. It helps us to understand the behavior of the API. Postman can help us with Performance Testing, Managing the API in one place, and sharing the collec
4 min read