How to create a new request in Postman?
Last Updated :
14 Mar, 2024
Postman is a development tool that is used for testing web APIs i.e. Application Programming Interfaces. It allows you to test the functionality of any application's APIs. Almost every developer uses Postman for testing purposes. We can create any type of HTTP request in it such as GET, POST, PUT, DELETE, PATCH, etc.
Prerequisites
Steps to Create a new Request in Postman
HTTP Request is a way to fetch data from the respective database. Postman supports a large number of different types of requests. In order to create a new request in Postman follow the steps given below:-
Step 1: Open the Postman Application or use web version. If you have not installed the Postman application in your system then, refer to How to Download and Install Postman on Windows? article.
Step 2: Create a new Workspace. Now, Click on "Workspaces", as shown below. then Select "Create Workspace".
Postman 1Now, select "Blank Workspace" and click "next".
Postman2After that, give your workspace some name. for example: "My workshop", etc.
Postman3Step 3: Click on the NEW option
After that you need click on "New" option as shown below and select the request type such as HTTP, GraphQL, gRPC, WebSocket, etc. In this example, Select "HTTP".
-min.png)
Step 4: Click on the Save option
Now, click on "Save" option as shown below and give your "request" some meaningful name and also give some name to your "collection". and click on "save".
In the example as shown below, request name is "Get Users" and collection name is "Users".

Step 5: Select Request type and add API URL
Finally, select the request type from dropdown and add the API endpoint from where you want to fetch data, put data, post data, delete data, etc.
In the example below, request type is "GET" and API is "https://engineering-task-dataneuron.onrender.com/add".
PostmanOutput: Now, click on the "Send" Button then, you will get your response.
Output
Similar Reads
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
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
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 perform DELETE 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), save environments for later use, and convert the API to code for various languages(like JavaScript, and Python). In thi
2 min read
How to Access Request Parameters in Postman? Request parameters are additional pieces of information sent along with a URL to a server. They provide specific details about the request, influencing the server's response. Parameters typically follow a 'Key=Value' format and are added to the URL in different ways depending on their type.Table of
4 min read
How to Import cURL Request into Postman ? Postman is an API development tool that helps us do everything related to APIs, make API calls, perform API testing, create automations, etc. This is a one-step tool to perform operations on the backend server, and show the outputs in various readable formats. In this article, we will learn how to i
2 min read
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 Convert a Postman Request to cURL? If you're a web developer, quality assurance engineer, or system administrator, chances are you're familiar with Postman, a crucial tool for API testing. However, there are instances where you may need to convert a Postman request to cURL, a command-line tool for data transfer. This article provides
3 min read
How to create and write tests for API requests in Postman? Postman is an API(utility programming interface) development device that enables to construct, take a look at and alter APIs. It could make numerous varieties of HTTP requests(GET, POST, PUT, PATCH), store environments for later use, and convert the API to code for various languages(like JavaScript,
3 min read
How to execute post-request scripts in Postman? Postman is an API(application programming interface) development tool that helps to build, test and modify APIs. It can make various types of HTTP requests(GET, POST, PUT, PATCH), save environments for later use, and convert the API to code for various languages(like JavaScript, and Python). In this
2 min read