Angular - HTTP Client
How do you correctly send an Angular HTTP GET request with custom headers and multiple query parameters?
const headers = new HttpHeaders().set('X-API-KEY', 'abc123');
const params = new HttpParams().set('status', 'active').set('limit', '5');
// What is the correct way to send the request?