TypeError: Converting circular structure to JSON –> starting at object with constructor ‘ClientRequest’
First of all nest.js provides you HttpService out of the box that you may inject it through DI: https://docs.nestjs.com/techniques/http-module Second – you are trying to store whole response object which is complex data structure and contains circular dependencies as it stated in error message (TypeError: Converting circular structure to JSON) What you should do is … Read more