I'm making a simple web call (GET) to an api that returns some json. Trouble is, I can't parse it with Newtonsoft (or otherwise) because the HTTP Utility RequestString response.Body is prepended with the word "Text".
Text
"[{"name":"10 Years","desc":"","descData":null,"closed":false ...
What can I do to avoid this and get my json string as an actual json string?