In this tutorial, we are going to use the Fetch API to fetch all public holidays in the United States.
We’ve have written extensively on the Fetch API here.
So, let’s begin.
getUsHolidays = async () => {
const url = "https://date.nager.at/api/v2/publicholidays/2020/US";
const obj = {
method: "GET",
headers: {
Accept: "application/json",
"Content-Type": "application/json",
},
};
await fetch(`${url}`, obj)
.then((response) => response.json())
.then((responseJson) => {
console.warn(responseJson);
})
.catch((error) => {
console.error(error.message);
});
}
Here, we’re using async/await with GET request method, and the content type is application/json.
We’re getting the response on the console and we’re also catching errors as well because, should the request not go through, we want to know what happened.
Here’s how we can make a simple GET request using Fetch API in Javascript. Let me know what you think in the comments.
check out the official documentaton here
Regardless of whether TikTok faces a U.S. ban, Instagram is wasting no time positioning itself…
Amazon Web Services (AWS) continues to enhance its customer experience by offering more flexible payment…
JavaScript, often hailed as the "language of the web," continues to dominate the programming landscape…
Amazon is accelerating efforts to reinvent Alexa as a generative AI-powered “agent” capable of performing…
SpaceX's satellite-based Starlink, which is currently unlicensed for use in India, is reportedly being utilized…
Netflix, a pioneer in the streaming industry, has always been at the forefront of adopting…