'How to get property from API Response in Node JS?

I have an API in node JS that calls another API - openWeatherMap. This is my postman response when i call the weather API: enter image description here

But this response brings every parameters in the API and I want to show the user for example the temp.min. How can I do this?



Solution 1:[1]

you can access to json Object values with thier keys, for example:

response.body.list[0].main.temp_min

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Ghaith Troudi