'Converting a POSTMAN request to Curl
I am calling my java webservice (POST request) via POSTMAN in the following manner which works perfectly fine (i.e. I can see my records getting inserted into the database):
And, here's how the contents inside the Headers(1) tab looks like:
Instead of calling it via POSTMAN, I have to call the same request in PHP using CURL. I am wondering if there's a way to export this command to curl command so that I could use it in my PHP code? I have found opposite approach at many places online where someone is asking to convert Curl based request to POSTMAN but couldn't figure out how to do the opposite.
Some articles I found for curl to postman
Solution 1:[1]
You can see the button "Code" in the attached screenshot, press it and you can get your code in many different languages including PHP cURL
Edited: As other answers said Postman UI was updated, I change the images accordingly
Solution 2:[2]
Solution 3:[3]
The first answer here works with the older versions of Postman. With the latest releases in 2021 the cURL can be found clicking this icon (circled in red)

Solution 4:[4]
If you're like me running MacOS and still have Postman v7, you have to click the ellipses here to find the code option
Solution 5:[5]
Here is a quick video demonstration postman request to curl
Latest version 8.x:
Solution 6:[6]
To extend the existing answers, there is an option to generate PHP ready cURL code if needed. With latest Postman, you will find dropdown for PHP - cURL and other languages.
See screenshot:
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | |
| Solution 2 | Artem Bernatskyi |
| Solution 3 | vivekagarwal277 |
| Solution 4 | TheFreddyKilo |
| Solution 5 | VeKe |
| Solution 6 |








