domain
path
curl https://tcpdata.com/whois/google.com
fetch('https://tcpdata.com/whois/google.com')
.then(res => res.json())
.then(data => console.log(data));
import requests
response = requests.get('https://tcpdata.com/whois/google.com')
print(response.json())