Make POST
requests to this endpoint in order to read contents from a url.
For example:
const request = { url: 'https://duckduckgo.com' };
const response = await fetch('https://proxy.noeldemartin.com/fetch', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(request),
});
const html = await response.text();
console.log(`Website HTML: ${html}`);
go home