Today, we will be using our newfound skills to make apps that request data from a server.
Here are some APIs that we can use for free. All but the dad jokes one simply need the url. Each API has documentation on how to ask for different data by changing the url. We have included an example fetch for each one to help you get started.
👉 Visit the documentation for the APIs, and use JS to request some data to see what you get back. From there, brainstorm what you could make with your knowledge of JavaScript, the DOM and the data you have received.
// fetch the first pokemon
fetch("https://pokeapi.co/api/v2/pokemon/1/");
// fetch 10 random questions
fetch("https://opentdb.com/api.php?amount=10");
// fetch a dad joke
fetch("https://icanhazdadjoke.com/", {
headers: { accept: "application/json" },
});
// fetch the definition of the word "hello" in British English (other languages available in the docs)
fetch(`https://api.dictionaryapi.dev/api/v2/entries/en_GB/hello`);
Now that you have an understanding of what data you're working with and have come up with an idea of what you could achieve, break down the problem into smaller chunks. Keep breaking the problem down until you can translate your plan into code. You should dream big, break it down, and start small. If your plan turns out to be overly ambitious, then be smart and reign it in. If you've been too conservative, try and push yourself.
Translate your plan into code, and turn your ideas into reality. Enjoy!