šĀ to the home page
In this first section, weāll setup some simple tools for testing APIs and make your first API calls to understand the basics. Then weāll signup for Github (if you havenāt already) so we can access a simple app later on in the tutorial.
āļøĀ Checklist
As mentioned in the introduction, you already have one kind of API client, your web browser! However, itās really only meant to be used for GET requests, and it expects all APIs to return HTML, CSS and Javascript instead of raw data, so that it can use it to make a pretty user interface (UI).
For this tutorial, weāll need a client that can make all kinds of ārequestsā and show us any kind of āresponseā (particularly raw data) in a user friendly way. Thereās a couple options for you below:
Visual Studio Code (VS Code) is a popular code editor and developer environment. While you can technically write code in any text editing program, VS Code has useful features and plugins that make developers' lives easier. We'll use some of these features later on, such as tools for interacting with APIs and debugging webhooks but if this looks too difficult or you are not able to install this kind of software on your laptop, try option 2 š.
If you skip installing VS Code, donāt worry, you can use entirely online tools for almost everything in this tutorial. A few years ago, this wasnāt possible, but in the modern cloud age you can write, test and deploy software all from a web browser! There are still some nice things about having the tools on your computer, but itās not required.