Copying network requests from chrome to postman

Sometimes I want to copy a network request which I've made in Google Chrome, so that I can edit or save it in Postman. Happily, this is easy to do by following these steps:

  1. Right click on a network request in your chrome dev tools Network tab.

  2. In the Copy submenu, select Copy as cURL (bash).

  1. In Postman, click Import.

  2. Click Raw Text and paste in the copied cURL command.

This will import the request exactly, making it easy to replicate or edit it however you need.