n
path
curl -I https://tcpdata.com/cache/3600
fetch('https://tcpdata.com/cache/3600')
.then(res => console.log(res.headers.get('Cache-Control')));
import requests
response = requests.get('https://tcpdata.com/cache/3600')
print(response.headers.get('Cache-Control'))