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