top of page


Python Practice Set (Part 14): Working with APIs and JSON
An API is like a menu that a web service provides for us to request data. The data is usually returned in a format called JSON(JavaScript Object Notation), which looks very similar to Python dictionaries and lists.
In this set, you'll learn how to parse JSON and make live API calls to fetch data from the internet, a crucial skill for any developer.
Anubhav Somani
Sep 32 min read
bottom of page