# 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)`.
    
    ![](https://cdn.hashnode.com/res/hashnode/image/upload/v1681293049980/f245021c-f116-4057-b6be-575c76f549ca.png align="center")
    
      
    
3. In Postman, click Import.
    
    ![](https://cdn.hashnode.com/res/hashnode/image/upload/v1681292993766/93e68e6d-7893-40fd-8291-e4deebddaf99.png align="center")
    
4. 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.
