Code for how to fetch data from an API. For this example I used an extra API for test cases, that you can use, too.
let path = 'https://javascriptcodingtestapi.herokuapp.com/data';
fetch(path, {
method: 'GET',
headers: { 'Content-Type': 'application/json'}
}).then(
res => res.json());
.then(
(result) => {
console.log(result.data);
},
(error) => {
console.error("Something went wrong!");
}
)
If you are more interested in APIs, here is an tutorial, on how you can create one of these with python.