tykus4 years agoLevel 104ReplyReport Spam@prido as I mentioned last night (and it disappeared because the other contributor deleted their reply); you need to tell Angular's HTTP client that you want more than just the response body by using the observe option on the GET request: this.http.post('http://example', {observe: 'response'}) .subscribe( (data) => { if(data.status === 201){ // ... } }) ; https://angular.io/guide/http#requesting-data-from-a-server Like Reply