Authentication
How to authenticate
API_KEY: your-secret-keycurl
curl -H 'API_KEY: your-secret-key' https://yourproxy.example.com:8443/8.8.8.8Python (requests)
import requests
response = requests.get(
"https://yourproxy.example.com:8443/8.8.8.8",
headers={"API_KEY": "your-secret-key"}
)
print(response.json())Go
Authentication failure
Choosing a strong API key
Last updated