← Back to Home

Robots.txt

/robots.txt
Returns a robots.txt file.

Examples

curl
curl https://tcpdata.com/robots.txt
JavaScript (fetch)
fetch('https://tcpdata.com/robots.txt')
  .then(res => res.text())
  .then(data => console.log(data));
Python (requests)
import requests

response = requests.get('https://tcpdata.com/robots.txt')
print(response.text)