Replicate requests from chrome network tab into Postman!

In this article I would be sharing easy way to replicate endpoint call from the Chrome Network Tab into Postman, an API testing tool.

Step 1:
In the network tab of Chrome Developer Tools, right click the request and click “Copy” > “Copy as cURL(bash)”.

Fig: Chrome dev tool

Step 2:
Open Postman. Click “Import” > Select “Raw text” > Paste curl(bash) in the text-box > Click “Continue” > Now, all you need to do is to hit the Import button and you’ll see the request with all its content.

Fig: Import button
Fig: Raw text field
Fig: Paste curl and click continue button
Fig: Import button

In this way we can skip hassle to self create mock request in Postman.

Result:

Fig: API request

Thanks for reading!

--

--