quick API that returns your IP address and headers.
let whoami = 'https://whoami.deno.dev'
let response = await fetch(whoami)
let data = await response.json()
console.log(data)
curl https://whoami.deno.dev?pretty
let whoami = 'https://whoami.deno.dev?ip'
let response = await fetch(whoami)
let ip = await response.text()
console.log(ip)
curl https://whoami.deno.dev?ip