Command

curl

2 useful snippets found.

How to check HTTP response headers

curl -I [URL]

How to POST JSON data with curl

curl -X POST -H "Content-Type: application/json" -d '{"key":"value"}' [URL]