3 Guides

request

How To Set Request Headers Using Axios?

HTTP headers allow clients and servers to talk to each other and pass extra bits of information or instructions. Let's see how to set them using Axios.

What is an API Call?

APIs (Application Programming Interface) connect applications and let them interact. API calls provide the medium for this interaction. Let's see how they work.

What Are HTTP Interceptors and How To Set Them Using Axios?

HTTP Interceptors allow us to check or modify all the incoming or outgoing HTTP requests in our application. We can use them if we want to apply something like an authorization header to all the requests. Let's see how to set HTTP interceptors for API requests using Axios.