Author -  Sai gowtham

How to get the data from an API in JavaScript

In this tutorial, we are going to learn about how to make an HTTP get request using JavaScript Fetch API to get the data and how to display that data into the webpage.

Getting started

First, let’s add an html markup that contains a div element with the id attribute.

<div id="app"></div>

Getting Data from API

We are making an HTTP get request to the Json Placeholder api using fetch method once the json data receives from the API, we are adding that data into the div element we just created.

add the following code to your JavaScript file.

const div = document.querySelector("#app");
const url = "https://jsonplaceholder.typicode.com/posts/1";

// sending request
fetch(url).then((response)=>{  return response.json();  // converting byte data to json
}).then(data=>{

   const {title, body} = data;
   // creating h1 and p elements
   const h1 = document.createElement('h1');
   const p = document.createElement('p');

  // adding content
  h1.textContent = title;
  p.textContent = body;

  // appending to div element
  div.appendChild(h1);  div.appendChild(p);})

Let’s learn how does the above code work.

  1. We accessed the div element using document.querySelector() method.

  2. We initialized a url (or api).

  3. The Fetch method accepts the url endpoint as an argument so that we passed url, inside the then() method we are accessing the response which comes from the api.

  • We have used the response.json() method to read the response stream and converting that data into json.
  1. At final, we are creating the two new html elements (h1, p) and adding content to it, then appending to the div element.

Output:

displaying data from api

Note: By default fetch sends an http get request.

Error handling

If an error occurs during the request, we need to display that error data into the page or logging the errors inside the browser console.

We can get the errors by chaining the fetch with a catch() method.

const div = document.querySelector('#app');
const url = "https://jsonplaceholder.typicode.com/posts/1";

// sending request
fetch(url).then((response)=>{
  return response.json();  // converting byte data to json
}).then(data=>{

   const {title, body} = data;

   // creating h1 and p elements
   const h1 = document.createElement('h1');
   const p = document.createElement('p');

  // adding content
  h1.textContent = title;
  p.textContent = body;

  // appending to div element
  div.appendChild(h1);
  div.appendChild(p);

}).catch(error=>{
    // logging error
   console.log(error);})

Css Tutorials & Demos

How rotate an image continuously in CSS

In this demo, we are going to learn about how to rotate an image continuously using the css animations.

How to create a Instagram login Page

In this demo, i will show you how to create a instagram login page using html and css.

How to create a pulse animation in CSS

In this demo, i will show you how to create a pulse animation using css.

Creating a snowfall animation using css and JavaScript

In this demo, i will show you how to create a snow fall animation using css and JavaScript.

Top Udemy Courses

JavaScript - The Complete Guide 2023 (Beginner + Advanced)
JavaScript - The Complete Guide 2023 (Beginner + Advanced)
116,648 students enrolled
52 hours of video content
$14.99 FROM UDEMY
React - The Complete Guide (incl Hooks, React Router, Redux)
React - The Complete Guide (incl Hooks, React Router, Redux)
631,582 students enrolled
49 hours of video content
$24.99 FROM UDEMY
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
203,937 students enrolled
31.5 hours of video content
$14.99 FROM UDEMY