Open In App

How to create and send GET requests in Postman?

Last Updated : 07 Dec, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

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, Python). In this article, we will learn How do you create and send GET requests in Postman?

Prerequisites

Steps to Create and Send GET requests on POSTMAN

Step 1: Open the POSTMAN app and click on the `+` icon to create a new collection. Name the collection ‘GFG’.

postman2

Step 2: When you hover, on the name of your collection, 3 dots will appear. Click on those 3 dots, and then click on “Add new request”

z159

Step 3: You can simply paste the API in the space provided and click on Send. Output will be shown in the body. Status code is shown in green , “200”

Note : We are using “https://jsonplaceholder.typicode.com/todos” api, to see the output

Refer below

Recording-2023-11-30-at-170509

Apart from API, you can even paste the URL of any website to get its code. For example, we are using URL;

https://learning.postman.com/docs/introduction/overview/

Recording-2023-11-30-at-171302


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads