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