Working with Web APIs
Learn how to work with web APIs while using the CLI.
We'll cover the following...
An API, or Application Programming Interface, lets developers interface with An API, or Application Programming Interface, lets developers interface with data without accessing the data directly. Web APIs let us do this by making requests to servers. APIs can let us see current weather conditions, stock prices, sports scores, social media feeds, and pretty much any data we’re looking to consume.
If we’re writing software that interfaces with a third-party web API, or if ...