This blog is about making a web API called to openweathermap.org. Yes, many have already done this i.e. just from Node.JS console but I wanted to try the same from ProfoundUI screen. I tried many open API's but felt weather app would be a good start. I'm planning to write one with ipconfig.io/json but that's for later. Create a account with openweather and use the key to access the free current API from program. While Profoundjs has different approach to handle web API but I could not get a grasp of it. I use the traditional Node.JS method to request data . REQUEST module is most popular for making HTTP request. There is HTTP module as well but REQUEST module make it lot easier. The below code submits a HTTP GET request to URL i.e to openweather API and it will return the data i.e. in this can we can opt for HTML or JSON data. In the below scenario, I have set the JSON:true. The same request can be used for POST, PUT or DELETE. request( URL , function( ...