Forbes India Leader Recognition
e.preventDefault(); // Prevent form submission input.blur(); // remove focus input.value = ""; // optional: clear the input

How to Consume APIs in Vue.js using Axios?

How to Consume APIs in Vue.js using Axios?

Featured Image

Introduction

As we all know Vue.js is a trending, open-source and lightweight javascript library for building interactive single-page applications and user-friendly web applications. When we integrate Vue.js with other libraries it becomes a “framework” also.

It’s a good practice to display data using APIs rather than adding the hardcoded content.

There are multiple ways for API consumption, but the use of Axios is the popular one. It’s a promise-based HTTP client and runs on both client and server.

Example

Here we will use the dummy API for understanding. Steps are given below:

  • First, install Axios:
    Using npm:

    $npm install axios

    Using yarn:

    $yarn add axios
  • There are multiple ways to request information from API, but to display the data it’s good to find out the form of the data we are getting. To do so, we’ll call the API endpoint and output the data to see it. Now first we will create the data property which will contain the information, and we will retrieve the data and assign it to the variable using the “mounted” (lifecycle method of Vue.js) method.
    new Vue({
    
      el: '#displayContent',
    
      data () {
    
        return {
    
          data: null
    
        }
    
      },
    
      mounted () {
    
        axios
    
          .get('http://dummy.restapiexample.com/api/v1/employees')
    
          .then(response => (this.data = response))
    
      }
    
    })

    Display response using HTML content:

    <div id="displayContent">
    
       {{ data }}
    
    </div>

    And, here is the Output:

    Consume_APIs_in_Vuejs_using_Axios_01

  • Great, here we got the data.
  • Now, we can add error handling if we got some unexpected response from the API so that the error will not break our application.
    Here are some reasons where our Axios call might fail:
    The API is down.

    • We are not getting the information in the expected format.
    • The request was made incorrectly.
  • Lets, handle these errors and tell the users if we are not able to get the data at all:
    new Vue({
    
      el: '#displayContent',
    
      data () {
    
        return {
    
          data: null,
    
          errored: false
    
        }
    
      },
    
      mounted () {
    
        axios
    
          .get('http://dummy.restapiexample.com/api/v1/employees')
    
          .then(response => (this.data = response))
    
          .catch(error => {
    
            console.log(error)
    
            this.errored = true
    
          })
    
      }
    
    })

    Display response using HTML content:

    <div id="displayContent">
    
     <section v-if="errored">
    
         <p>Sorry, we  are not able to get the information. please try again late.r</p>
    
     </section>
    
    <section v-else>
    
    {{ data }}
    
    </section>
    
    </div>

    This can be improved by using components, more error handling, and depending upon complexity of the application.

Finally, it may be concluded…

There are multiple ways to work with Vue.js and Axios. You can also make communication with post/edit/delete from an API. The integration of these two libraries (Vue.js and Axios) has become a very popular choice of developers who want to integrate HTTP client in their web applications.

Related Posts

Latest Posts

  • All Posts
  • AI Powered Knowledge
  • ai/ml
  • CEO India Magazine
  • CMMI level 5 Certification
  • e-learning
  • Fintech
  • gaming
  • Generative AI
  • healthcare
  • manufacturing
  • News
  • OTT
  • Portfolio
  • supply chain
  • travel and hospitality
  • Tudip's AI Hackathon
  • Voxlearn Enterprises
    •   Back
    • Android
    • iOS
    • Java
    • PHP
    • MEAN
    • Ruby
    • DotNet
    • IoT
    • Cloud
    • Testing
    • Roku
    • CMS
    • Python
The Future of Workplace Learning: AI-Powered Knowledge on Demand

The Future of Workplace Learning: AI-Powered Knowledge on Demand

June 12, 2026

A few months ago, I was sitting in a meeting with a team lead who looked genuinely frustrated. Not because…

Read More
We Did It Again: Tudip Successfully Renews Its CMMI Level 5 Certification

We Did It Again: Tudip Successfully Renews Its CMMI Level 5 Certification

June 9, 2026

Nobody around here needed a memo to know something worth celebrating had happened. The message from the CMMI Institute said…

Read More
CEO India Magazine Features Dipti Agrawal: The Woman Behind Intelligent Enterprise Solutions

CEO India Magazine Features Dipti Agrawal: The Woman Behind Intelligent Enterprise Solutions

June 9, 2026

There are moments at work that just stop you in your tracks. Not the big quarterly reviews or the product…

Read More

India

Plot No. 11/2, Phase 3, Hinjewadi Rajiv Gandhi Infotech Park, Pune, India – 411057.
info@tudip.com
+91-96-8990-0537

United States

1999 S. Bascom Ave Suite 700, Campbell CA. 95008, USA.
info@tudip.com
+1-408-216-8162

Canada

64 Caracas Road North York, Toronto Ontario M2K 1B1, Canada.
info@tudip.com

Mexico

Calle Amado Nervo #785 Interior B Colonia Ladron De Guevara 44600 Guadalajara, Jalisco, Mexico.
info@tudip.com

Singapore

77 High Street, #10-12B High Street Plaza, Singapore 179433.
info@tudip.com

Colombia

Cra. 9 # 113-53 Of. 1405 Bogotá D.C., Colombia.
info@tudip.com

UAE

Tudip Information Technologies L.L.C Office No 109, ABU HAIL BUILDING 13, Abu Hail, Dubai, UAE.
info@tudip.com

Nigeria

22 Kumasi Crescent, Wuse 2, Abuja, Nigeria.
info@tudip.com