← Back to Home

Denied Page

/deny
Returns a page that should be blocked by robots.txt.

Examples

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

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