DEV Community

Osika Martha
Osika Martha

Posted on

How to effectively use the Fetch API in JavaScript

The Fetch API is a modern interface for fetching resources (such as data or files) from a server using JavaScript. It provides a simpler and more efficient way to make asynchronous network requests and handle the responses than the older XMLHttpRequest (XHR) interface.
In this post, we'll cover the basics of how to use the Fetch API in JavaScript, with some examples to illustrate its usage.

The Basics of Fetch API

To make a fetch request, we use the fetch() method, which takes a URL as its argument and returns a Promise that resolves the response of the request. Here's an example:

fetch('https://jsonplaceholder.typicode.com/todos/1')
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error(error));

Enter fullscreen mode Exit fullscreen mode

This fetch request retrieves a JSON object from the URL https://jsonplaceholder.typicode.com/todos/1. The response is then converted to a JavaScript object using the JSON() method; finally logged to the console. The catch() method is used to handle any errors that may occur during the fetch request.

Making POST requests

We can also use the Fetch API to make POST requests, which send data to a server. Here's an example:

const data = { title: 'foo', body: 'bar', userId: 1 };

fetch('https://jsonplaceholder.typicode.com/posts', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify(data)
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error(error));

Enter fullscreen mode Exit fullscreen mode

In this example, we're sending a JSON object as the request body to the URL https://jsonplaceholder.typicode.com/posts. We specify the HTTP method as POST and set the Content-Type header to application/json to indicate that we're sending JSON data. We convert the data object to a JSON string using the JSON.stringify() method before sending it in the request body.

Error handling

When making fetch requests, it's important to handle errors properly. We can use the catch() method to handle any errors that may occur during the request, such as network errors or server errors.

fetch('https://jsonplaceholder.typicode.com/todos/999999')
  .then(response => {
    if (!response.ok) {
      throw new Error('Network response was not ok');
    }
    return response.json();
  })
  .then(data => console.log(data))
  .catch(error => console.error(error));

Enter fullscreen mode Exit fullscreen mode

We're trying to fetch data from an invalid URL. If the response status is not ok (i.e., not in the range of 200-299), we throw an error with a custom message. The catch() method is used to handle this error.

Adding headers

Sometimes we need to add headers to our fetch requests, such as authentication tokens or custom headers. We can do this by passing an object as the second argument to the fetch() method, containing the headers we want to add.

const headers = {
  'Authorization': 'Bearer my-token',
  'Content-Type': 'application/json'
};

fetch('https://jsonplaceholder.typicode.com/todos/1', {
  headers: headers
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error(error));

Enter fullscreen mode Exit fullscreen mode

We're adding two headers to our fetch request: an authentication token using the Authorization header, and a Content-Type header to indicate that we're sending JSON data.

Conclusion

The Fetch API is a powerful tool that enables developers to fetch data from servers in a simple and intuitive way. By using the basic fetch request, headers, and error handling techniques, you can effectively use the Fetch API in your JavaScript projects.

Top comments (0)