Using Wix Fetch With Plain Text Response

Hey I wan to use fetch but the api response is not in json format it is a plain text. Api is basicly tiny url url shortener. How can I get response from this api link and log it to console? I have tried the code below. You can try the link to see the response. Can someone please help?

fetch(“http://tinyurl.com/api-create.php?url=http://google.com/”)
.then(httpResponse => httpResponse.text())
.then(text => console.log(text));