Send Get request in Postman (original) (raw)

Last Updated : 29 May, 2026

A GET request in Postman is used to retrieve data from a server or API without modifying it. It is one of the most commonly used HTTP methods for fetching information.

GET Request

A GET request is an HTTP request used to retrieve data from a server. It is considered safe because it does not modify any data on the server. When the same GET request is sent multiple times, it is expected to return the same result.

Ways to Send GET Request

There are different ways to send a Get request. Some of the ways are listed below:

1. Using Web Browser

A GET request can be sent directly through a browser by entering the API URL in the address bar. The browser displays the response returned by the server.

Example: https://reqres.in/api/users?page=2

Only GET requests can be tested in a browser, not POST, PUT, or DELETE.

2. Using Programming Languages

GET requests can also be sent using code in languages like Python, JavaScript, or Java using HTTP libraries or built-in functions.

3. 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'.

Sending GET request Using Postman

**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.

Sending GET request Using Postman

**Step 4: Now Create a New Collection.

Sending GET request Using Postman

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

Sending GET request Using Postman

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

Sending GET request Using Postman

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

Sending GET request Using Postman

**Step 8: Copy the URL Paste it on the URL Section and hit send.

https://reqres.in/api/users?page=2

Sending GET request Using Postman

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

Sending GET request Using Postman

Now, you can try the same by sending different GET requests from the Sample API Website and can do Practice.

Understanding the Response Panel (Postman)

Once a request is sent, Postman displays the response so you can easily analyze it.

Key Elements: