If you're getting the data using API, it will be easier to use an array to display data rather than an object.
Declare your array first in your component class:
...
array: [];
...
Then use JSON.stringify and JSON.parse to convert the object into an array.
...
...
ngOnInit() {
this.service.method()
.subscribe(
data=>
{
this.array = JSON.parse(JSON.stringify(data.object));
}
)
}
...
You can use that array to print your results from API data in html template.
For e.g.
<p>{{array['something']}}</p>
