til

Today I Learned: collection of notes, tips and tricks and stuff I learn from day to day working with computers and technology as an open source contributor and product manager

View project on GitHub

Post JSON Data with cURL

Posting JSON using cURL is a common task when working with APIs. This TIL will show you how to post JSON data using cURL.

curl --header "Content-Type: application/json" \
  --request POST \
  --data '{ "name": "xenomorpheus", "job": "supremeleader" }' \
  https://reqres.in/api/users

I can recommend reqres.in for playing around and learning purposes.

Resources and References