🚀 AI SaaS Starter is now live!

50% OFF

Use code FIRST50

Blog/NotesConcept

Implement useFetch() Custom Hook in React (Interview)

Find the step-by-step explanation of the useFetch custom hook in React that helps in fetching the data from an API and handling loading, error states.

beginner

Anuj Sharma

Last Updated Nov 10, 2025


Implement useFetch() Custom Hook in React

Learn how to create a custom hook in React, useFetch, that simplifies data fetching from APIs and manages loading and error states efficiently.

Step 1: Define the useFetch Hook

import React, { useState, useEffect } from 'react';

const useFetch = (url) => {
  const [data, setData] = useState(null);
  const [loading, setLoading] = useState(true);
  const [error, setError] = useState(null);

  useEffect(() => {
    const fetchData = async () => {
      try {
        const response = await fetch(url);
        if (!response.ok) {
          throw new Error('Failed to fetch data');
        }
        const result = await response.json();
        setData(result);
      } catch (err) {
        setError(err);
      } finally {
        setLoading(false);
      }
    };

    fetchData();
  }, [url]);

  return { data, loading, error };
};

1. Initialize States

The hook begins by setting up three pieces of state:

  • data → stores the fetched API result
  • loading → tracks if the request is still ongoing
  • error → captures any failure during the fetch

These states help manage the complete request lifecycle.

2. Trigger Fetch on URL Change

A useEffect runs automatically whenever the url changes.
This ensures that new data is fetched each time a different endpoint is passed.

3. Fetch Data Asynchronously

Inside the effect, an asynchronous function performs the API request using the Fetch API.
This allows React to handle network requests cleanly without blocking the UI.

4. Handle Success and Errors

If the request succeeds, the fetched data is parsed and stored in data.
If it fails (due to network or response issues), the error is caught and stored in error.

5. Update Loading Status

Once the request completes — whether successful or not — the loading flag is set to false, so the component knows the operation is done.

6. Return Results to the Component

Finally, the hook returns { data, loading, error }, giving the component everything it needs to render UI accordingly (loading spinner, data display, or error message).

Step 2: Using the useFetch Hook

Now, let's see how we can use the useFetch custom hook in a React component.

const MyComponent = () => {
  const { data, loading, error } = useFetch('https://api.example.com/data');

  if (loading) return <div>Loading...</div>;
  if (error) return Error: {error.message};

  return (
    <div>
      <h2>Fetched Data</h2>
      <p>{JSON.stringify(data)}</p>
    </div>
  );
};

Real-World Example: Fetching Data from an API

Let's consider a real-world scenario where you need to fetch data from an API using the useFetch custom hook.

import React from 'react';
import { useFetch } from './useFetch';

export function App(props) {
  const { data, loading, error } = useFetch('https://dummyjson.com/test');

  if (loading) return <div>Loading...</div>;
  if (error) return <>Error: {error.message}</>;

  return (
    <div>
      <h2>Fetched Data</h2>
      <p>{JSON.stringify(data)}</p>
    </div>
  );
}

Final Thoughts

Custom hooks like useFetch in React provide a powerful way to encapsulate and reuse complex logic across components. By moving data fetching and state management into common place, custom hooks promote code reusability and maintainability in frontend applications.

Start leveraging custom hooks in your React projects to enhance code quality and this will also help to write clean code.

Happy Coding :)

Learn Next

  1. 20 Most Asked Custom Hooks in React for Interviews
  2. Why Custom Hooks Not allowed inside functions

🚀

Love this content? Share it!

Help others discover this resource

Comments

Be the first to share your thoughts!

Guest User

Please login to comment

0 characters


No comments yet.

Start the conversation!

Share Your Expertise & Help the Community!

Build Your Portfolio

Help the Community

Strengthen Your Skills

Share your knowledge by writing a blog or quick notes. Your contribution can help thousands of frontend developers ace their interviews and grow their careers! 🚀


Other Related Blogs

Top 10 React Performance Optimization Techniques [React Interview]

Anuj Sharma

Last Updated Nov 10, 2025

Find the top React Performance Optimization Techniques specific to React applications that help to make your react app faster and more responsive for the users along with some bonus techniques.

Implement useThrottle Custom Hook In React (Interview)

Anuj Sharma

Last Updated Nov 16, 2025

Implement useThrottle Custom Hook In React (Interview) to limit the number of APi calls to improve the performance of application.

Flatten Nested Array in JavaScript using Recursion

Anuj Sharma

Last Updated Nov 11, 2025

Understand step by step how to flatten nested array in javascript using recursion, also explore the flatten of complex array of object.

Polyfill for map, filter, and reduce in JavaScript

Anuj Sharma

Last Updated Oct 2, 2025

Explore Polyfill for map, filter and reduce array methods in JavaScript. A detailed explanation of Map, filter and reduce polyfills in JS helps you to know the internal working of these array methods.

Master Hoisting in JavaScript with 5 Examples

Alok Kumar Giri

Last Updated Jun 2, 2025

Code snippet examples which will help to grasp the concept of Hoisting in JavaScript, with solutions to understand how it works behind the scene.

setTimeout Polyfill in JavaScript - Detailed Explanation

Anuj Sharma

Last Updated Aug 3, 2025

Explore the implementation of setTimeout in JavaScript with a detailed explanation for every step. Understand all scenarios expected to implement the setTimeout polyfill.

Stay Updated

Subscribe to FrontendGeek Hub for frontend interview preparation, interview experiences, curated resources and roadmaps.

FrontendGeek
FrontendGeek

© 2025 FrontendGeek. All rights reserved