Just adding some additional info around getting the response body, as it’s a little bit different because you need to convert that stream object.
If you add something like this, under the console.log() lines from @jetison’s image above, you should also be able to log out the body of that request.
let resBody = new Buffer.from(res.stream).toString()
console.log(JSON.parse(resBody))
This is just one way of doing it but I’m sure that there are many more.