

0 / 2 embers
0 / 3000 xp
click for more info
Complete a lesson to start your streak
click for more info
Still calibrating
click for more info
Not enough gems
Cost: 6 gems
1: Install cURL
incomplete
2: cURL Basics
incomplete
3: cURL POST Request
incomplete
4: Install jq
incomplete
5: jq Basics
incomplete
This lesson's interactive features are locked, please to keep using them
The simplest cURL command makes a GET request to the provided URL, for example:
curl https://jsonplaceholder.typicode.com/users/1
The response body is written to stdout
Because the output is written to stdout you can combine it with other commands, e.g. redirecting the output to a file.
curl https://jsonplaceholder.typicode.com/users/1 > user1.json
cURL supports a number of options and commands. Check their tutorial page or the man page for more information. We will only be covering the basics.
man curl
https://api.boot.dev/v1/courses_rest_api/learn-http/issues
Run and submit the CLI tests.