
How to create an Interceptor in Angular and Why?
Natan Ferreira
- 0
- 51
In Angular, an Interceptor is an feature that allows intercepting HTTP requests . This enables you to add logic such as:
- Automatically adding authentication tokens (JWT);
- Logging;
- Global error handling;
- Monitoring performance.
Hands on
We can create an Interceptor with the following command.
ng generate interceptor interceptorname
Now, let’s create an Interceptor to add JWT tokens.
export const authInterceptor: HttpInterceptorFn = (req, next) => {
const accessToken = inject(AuthService).getAccessToken();
if(accessToken) {
const reqClone = req.clone({
headers: req.headers.set('Authorization', `Bearer ${accessToken}`),
});
return next(reqClone);
}
return next(req);
};
This is a real example of an Interceptor. We have a service that retrieves the token, allowing us to clone the request and add the token.
Why not just modify the original request and add the token?

Because the request is immutable—we cannot modify it directly, which is why we need to clone it before adding the token.
This alone is not enough for it to work. We need to specify it in the module under the providers property.
In the AppModule, I specified the following interceptor:
providers: [
provideHttpClient(
withInterceptors([authInterceptor, HttpErrorInterceptor])),
],
We can see the authInterceptor we created, along with the HttpErrorInterceptor. We can have multiple interceptors. In this specific case, we have two:
The HttpErrorInterceptor, which handles global error management.
The authInterceptor, which we created.
export const HttpErrorInterceptor: HttpInterceptorFn = (req, next) => {
//some logic
};
This allows us to implement global error handling.
What if we are using standalone components? Since there is no AppModule, how do we register the interceptor?

To answer this question, I created a new interceptor in a project without an AppModule.
import { HttpInterceptorFn } from '@angular/common/http';
export const httpInterceptor: HttpInterceptorFn = (req, next) => {
console.log("Interceptor")
return next(req);
};
To register it, we need to add it to the main.ts
file.
import { bootstrapApplication } from '@angular/platform-browser';
import { appConfig } from './app/app.config';
import { AppComponent } from './app/app.component';
bootstrapApplication(AppComponent, appConfig)
.catch((err) => console.error(err));
The appConfig contains a providers array, where we need to declare the interceptor.
import { ApplicationConfig, provideZoneChangeDetection } from '@angular/core';
import { provideRouter } from '@angular/router';
import { routes } from './app.routes';
import { provideHttpClient, withInterceptors } from '@angular/common/http';
import { httpInterceptor } from './http.interceptor';
export const appConfig: ApplicationConfig = {
providers: [
provideZoneChangeDetection({ eventCoalescing: true }),
provideRouter(routes),
provideHttpClient(withInterceptors([httpInterceptor]))
]
};
Now it’s successfully registered!
Conclusion
Interceptors are a powerful tool in Angular for centralizing logic that affects all HTTP requests. With them, we can:
✔ Automatically add authentication tokens
✔ Handle errors globally
✔ Monitor requests
This helps avoid code duplication and improves application maintainability. 🚀
Author
-
I am a seasoned Full Stack Software Developer with 8+ years of experience, including 6+ years specializing in Java with Spring and Quarkus. My core expertise lies in developing robust RESTful APIs integrated with Cosmos Db, MySQL, and cloud platforms like Azure and AWS. I have extensive experience designing and implementing microservices architectures, ensuring performance and reliability for high-traffic systems. In addition to backend development, I have experience with Angular to build user-friendly interfaces, leveraging my postgraduate degree in frontend web development to deliver seamless and responsive user experiences. My dedication to clean and secure code led me to present best practices to my company and clients, using tools like Sonar to ensure code quality and security. I am a critical thinker, problem solver, and team player, thriving in collaborative environments while tackling complex challenges. Beyond development, I share knowledge through my blog, NatanCode, where I write about Java, Spring, Quarkus, databases, and frontend development. My passion for learning and delivering innovative solutions drives me to excel in every project I undertake.