Display raw html

Hi,
How to display standard html response via API call like “…”, and I want to just display it on a full page. Any clues?

Can you clarify your goals a bit? I’m not really understanding.

My custom app makes api call to another website and getting html string response. I want to show this html on full page as it is

I don’t totally understand what you mean by displaying it on the full page, but if you’re talking about a client side cal you could mount the string html wherever you want using jquery’s appendTo method (or the equivalent in vanilla html):

https://api.jquery.com/appendTo/

If you actually want to control the whole page render cycle, it gets a fair bit more complicated.