So erhalten Sie die HTTP -Anforderung und speichern die Antwort in einer Variablen in Angular
this.http.get("https://reqres.in/api/users/2").subscribe(data => {
console.log(data);
this.values = data;
}
Mohan Eswar