Skip to content

Instantly share code, notes, and snippets.

View OmriTreidel's full-sized avatar

Omri Treidel OmriTreidel

  • Brisbane Australia
  • 19:16 (UTC +10:00)
View GitHub Profile
@ungoldman
ungoldman / curl_post_json.md
Last active September 27, 2025 22:22
post a JSON file with curl

How do you POST a JSON file with curl??

You can post a json file with curl like so:

curl -X POST -H "Content-Type: application/json" -d @FILENAME DESTINATION

so for example: