Currently, I am utilizing the fetch
method to execute API requests. While everything is functioning as expected, I have encountered a challenge with one specific API call due to the fact that it returns a string instead of an object.
Normally, the API provides an object from which I can extract the necessary information by parsing the JSON data. However, in this scenario, I am struggling to locate the text within the response object.
Upon examining the response object, it appears like this: https://i.sstatic.net/RapuG.png
I initially assumed that the text would be contained within the body of the response, but after searching extensively, I have not been able to find it. Where should I direct my attention next?