0 added
0 removed
Original
2026-01-01
Modified
2026-02-21
1
<p>Postman is a service used for manual and automated testing for HTTP APIs. You can use it:</p>
1
<p>Postman is a service used for manual and automated testing for HTTP APIs. You can use it:</p>
2
<ul><li>To execute queries through a user-friendly web interface</li>
2
<ul><li>To execute queries through a user-friendly web interface</li>
3
<li>To create tests that check APIs' operation automatically</li>
3
<li>To create tests that check APIs' operation automatically</li>
4
<li>To do much more</li>
4
<li>To do much more</li>
5
</ul><p>Postman isn't the only service of its kind but the most popular one.</p>
5
</ul><p>Postman isn't the only service of its kind but the most popular one.</p>
6
<p>Postman works in workspaces. By default, after registering, you'll already have<em>My Workspace</em>created for personal tasks and experiments.</p>
6
<p>Postman works in workspaces. By default, after registering, you'll already have<em>My Workspace</em>created for personal tasks and experiments.</p>
7
<p>Inside the workspace, in the center of the screen, there's a block where you can create tabs and make HTTP requests.</p>
7
<p>Inside the workspace, in the center of the screen, there's a block where you can create tabs and make HTTP requests.</p>
8
<p>Each tab describes a specific query that we want to make. It is the central part of the whole service. Here you specify the URL, HTTP method, headers, and all the parameters to perform the request.</p>
8
<p>Each tab describes a specific query that we want to make. It is the central part of the whole service. Here you specify the URL, HTTP method, headers, and all the parameters to perform the request.</p>
9
<p>Once the request is defined, we can press<em>send</em>to execute it. At the bottom, you'll see a formatted version of the answer. In addition to the HTTP response, Postman shows the amount of data transferred, the request time, and other parameters.</p>
9
<p>Once the request is defined, we can press<em>send</em>to execute it. At the bottom, you'll see a formatted version of the answer. In addition to the HTTP response, Postman shows the amount of data transferred, the request time, and other parameters.</p>
10
<p>The best way to learn the Postman interface is through experimentation. Try making several different requests to<a>dummyjson</a>using the most complex requests, including:</p>
10
<p>The best way to learn the Postman interface is through experimentation. Try making several different requests to<a>dummyjson</a>using the most complex requests, including:</p>
11
<ul><li>Request parameters</li>
11
<ul><li>Request parameters</li>
12
<li>Body</li>
12
<li>Body</li>
13
<li>POST, DELETE, and PUT methods</li>
13
<li>POST, DELETE, and PUT methods</li>
14
<li>Token authentication</li>
14
<li>Token authentication</li>
15
</ul><p>Running queries through Postman is not technically different from working with Curl, except for the convenience of entering information using the web interface. The main advantage, however, is the ability to describe the API of a service as a whole thing. You'll easily be able to return to this description, either for experiments or tests. In Postman's terms, such a description is called a collection.</p>
15
</ul><p>Running queries through Postman is not technically different from working with Curl, except for the convenience of entering information using the web interface. The main advantage, however, is the ability to describe the API of a service as a whole thing. You'll easily be able to return to this description, either for experiments or tests. In Postman's terms, such a description is called a collection.</p>
16
<p>A collection consists of a set of endpoints. We can link it by a single authentication method, query parameters, variables (to substitute values in the URL), and other elements. All this is set in the settings for the collection or for the specific endpoints.</p>
16
<p>A collection consists of a set of endpoints. We can link it by a single authentication method, query parameters, variables (to substitute values in the URL), and other elements. All this is set in the settings for the collection or for the specific endpoints.</p>
17
<p>These are just the basic features of Postman. The advanced ones include tools for:</p>
17
<p>These are just the basic features of Postman. The advanced ones include tools for:</p>
18
<ul><li>API design and testing</li>
18
<ul><li>API design and testing</li>
19
<li>Backend emulation if there's no API</li>
19
<li>Backend emulation if there's no API</li>
20
<li>API operability monitoring</li>
20
<li>API operability monitoring</li>
21
<li>And much more</li>
21
<li>And much more</li>
22
</ul>
22
</ul>