

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
jq is a powerful command-line tool for processing JSON data. It's a favorite among developers for working with JSON because it can:
Most Unix-based systems, including macOS and Linux, do not come with jq pre-installed. Follow these steps to install it on your system.
Check if you have jq installed. Open a terminal and type:
jq --version
If you see the version number, you're good to go.
Run and submit the CLI tests.
If you don't have jq installed, install it:
Install on Debian-based systems (like Ubuntu/WSL) with:
sudo apt-get update
sudo apt-get install jq