Mastering Axios in React: API Calls Made Easy
Introduction Welcome back to Episode 7 of our series — “Let’s Master React Hooks Together.” So far in this series, we’ve explored how React Hooks help us manage state, handle side effects, and build cleaner, smarter components. But as applications grow, one thing becomes unavoidable — working with APIs and backend data. A React application without API communication is like a car without fuel. Whether you're building a social media app, an e-commerce platform, or a dashboard, your frontend constantly needs to fetch, send, update, and delete data from servers. That’s where Axios comes into the picture. In this episode, we’ll deeply understand: What Axios is Why developers prefer it How Axios works in React GET, POST, PUT, DELETE requests Error handling Async/Await Interceptors Best practices Real-world usage By the end of this article, you’ll not only know how to use Axios — you’ll understand why it has become one of the most trusted tools in modern React development. So let’s continue our journey and master another essential part of React development together. Axios is a promise-based HTTP client for JavaScript. In simple words, Axios helps your React application send and receive data from APIs. It works in: React Node.js Vue Angular Plain JavaScript applications Axios allows developers to make requests such as: GET → Fetch data POST → Send data PUT → Update data DELETE → Remove data React itself focuses only on building user interfaces. It does not include a built-in system for API handling. To communicate with servers, we need tools like: Fetch API Axios Although JavaScript already provides the Fetch API, many developers prefer Axios because it is simpler and provides more useful features. Here are some major reasons developers choose Axios: Axios code is usually shorter and easier to read. fetch("https://jsonplaceholder.typicode.com/users") .then(response => response.json()) .then(data => console.log(data)) axios.get("https://jsonplaceholder.typicode.com/users") .then(response => console.log(response.data)) Axios automatically converts JSON data, reducing extra code. Axios handles HTTP errors more effectively. For example: 404 errors 500 server errors Network failures It provides detailed error responses that help developers debug faster. Axios automatically: Converts request data to JSON Parses response JSON automatically With Fetch, you need to manually call .json(). Axios allows cancelling requests. This is useful when: Users leave a page before data loads Preventing memory leaks Avoiding unnecessary API calls Axios provides interceptors that allow developers to: Modify requests Add authentication tokens Handle errors globally This is extremely useful in large applications. To use Axios in a React project, install it using npm. npm install axios Or using yarn: yarn add axios Axios works by sending HTTP requests from your React frontend to a backend API. The process looks like this: React component loads Axios sends request to API Server processes request Server sends response React updates the UI with received data A GET request is used to fetch data. import React, { useEffect, useState } from "react"; import axios from "axios"; function Users() { const [users, setUsers] = useState([]); useEffect(() => { axios .get("https://jsonplaceholder.typicode.com/users") .then((response) => { setUsers(response.data); }) .catch((error) => { console.log(error); }); }, []); return ( Users List {users.map((user) => ( {user.name} ))} ); } export default Users; axios.get() Used to fetch data from an API. axios.get(url) .then() Runs when the request succeeds. .then((response) => { console.log(response.data) }) .catch() Handles errors. .catch((error) => { console.log(error) }) Modern React applications often use async/await because it looks cleaner. import React, { useEffect, useState } from "react"; import axios from "axios"; function Posts() { const [posts, setPosts] = useState([]); useEffect(() => { fetchPosts(); }, []); const fetchPosts = async () => { try { const response = await axios.get( "https://jsonplaceholder.typicode.com/posts" ); setPosts(response.data); } catch (error) { console.log(error); } }; return ( Posts {posts.map((post) => ( {post.title} ))} ); } export default Posts; POST requests are used to send data to a server. import axios from "axios"; const addUser = async () => { try { const response = await axios.post( "https://jsonplaceholder.typicode.com/users", { name: "John Doe", email: "[email protected]", } ); console.log(response.data); } catch (error) { console.log(error); } }; PUT requests update existing data. axios.put("https://jsonplaceholder.typicode.com/users/1", { name: "Updated Name", }); DELETE requests remove data from a server. axios.delete("https://jsonplaceholder.typicode.com/users/1"); Axios responses contain useful information. const response = await axios.get(url); console.log(response); Property Description data Actual response data status HTTP status code headers Response headers config Request configuration Error handling is extremely important in real-world applications. try { const response = await axios.get(url); } catch (error) { if (error.response) { console.log(error.response.status); console.log(error.response.data); } else { console.log(error.message); } } Interceptors allow developers to run code before requests or responses are handled. They are commonly used for: Authentication tokens Logging Global error handling axios.interceptors.request.use( (config) => { config.headers.Authorization = "Bearer token"; return config; }, (error) => { return Promise.reject(error); } ); axios.interceptors.response.use( (response) => { return response; }, (error) => { if (error.response.status === 401) { console.log("Unauthorized"); } return Promise.reject(error); } ); Axios has beginner-friendly syntax. No need for manual conversion. Handles errors clearly. Better compatibility than Fetch in some environments. Axios supports request timeout configuration. axios.get(url, { timeout: 5000, }); Even though Axios is powerful, it has a few disadvantages. You need to install an external package. Compared to the native Fetch API. For very small projects, Fetch may be enough. Instead of repeating the base URL everywhere: import axios from "axios"; const api = axios.create({ baseURL: "https://api.example.com", }); export default api; Avoid placing API calls directly inside components. Good structure: src/ ├── api/ │ └── users.js ├── components/ └── pages/ Always use: try/catch loading states user-friendly error messages Never hardcode API URLs. Example: process.env.REACT_APP_API_URL Axios is commonly used in: Authentication systems E-commerce websites Social media apps Dashboard applications Admin panels Chat applications Almost every React application that communicates with a backend can benefit from Axios. Feature Axios Fetch JSON Parsing Automatic Manual Error Handling Better Basic Interceptors Yes No Request Cancellation Yes Limited Built into Browser No Yes Simpler Syntax Yes Moderate And that wraps up Episode 7 of our series — “Let’s Master React Hooks Together.” In this episode, we explored one of the most important skills every React developer must learn: handling API requests with Axios. We covered: What Axios is Why developers love it How requests work Async/Await handling Error management Interceptors Best practices for scalable applications Understanding Axios is a major step forward because real-world React applications are heavily dependent on backend communication. Once you become comfortable with Axios, building dynamic and data-driven applications becomes much easier and more professional. As we continue this series, we’ll keep moving deeper into practical React concepts that developers use in real production applications every day. So stay tuned for the next episode of “Let’s Master React Hooks Together” — and keep building, keep learning, and keep coding consistently.
