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