Open In App

What are collections in Postman, and how to use them?

Postman is an Application Programming Interface (API) tool that streamlines the lifecycle of API development and testing efficiently. It can be used to develop, design, document, and test APIs.

Prerequisites

What are collections in Postman?

Postman provides the ability to group several API requests into a logical arrangement called Collections. This not only allows developers to save and reuse API requests but also to share them among team members. Collections are one of those features that we can use for documentation, running the Tests, writing Pre-Request Scripts, and all. These all things are bundled up into the collections. Based on collections, we can create Mock Servers to show the behavior of API.

Advantages of Collections

Steps to create and use a Collection

Step 1: Click on the + Icon present in the Postman application in the Collections tab.



The Collections tab on the left sidebar shows all the collections that have been created.

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”

Step 3: Now You can simply paste the API in the space provided and select the API type you are requesting from the dropdown like GET,POST, PUT, DELETE etc. Output will be shown in the body with the status code.

API Used:

https://jsonplaceholder.typicode.com/posts/?userId=1

Output:

Article Tags :