Dude, curl make request is super easy once you get the hang of it.
Just type:
```
curl -v http://google.com
```
The `-v` flag shows you EVERYTHING—headers, response, all the juicy details.
For POST, try:
```
curl -X POST -H "Content-Type: application/json" -d '{"key":"value"}' https://api.example.com
```
Just type:
```
curl -v http://google.com
```
The `-v` flag shows you EVERYTHING—headers, response, all the juicy details.
For POST, try:
```
curl -X POST -H "Content-Type: application/json" -d '{"key":"value"}' https://api.example.com
```
