Unsubscribe from email notifications (no auth)
curl --request GET \
--url https://api.sitespy.app/api/v1/email/unsubscribe \
--header 'x-api-key: <api-key>'import requests
url = "https://api.sitespy.app/api/v1/email/unsubscribe"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.sitespy.app/api/v1/email/unsubscribe', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));"<string>"Email Verification
Unsubscribe from email notifications (no auth)
Single-click unsubscribe using a token. Returns an HTML confirmation page.
GET
/
email
/
unsubscribe
Unsubscribe from email notifications (no auth)
curl --request GET \
--url https://api.sitespy.app/api/v1/email/unsubscribe \
--header 'x-api-key: <api-key>'import requests
url = "https://api.sitespy.app/api/v1/email/unsubscribe"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.sitespy.app/api/v1/email/unsubscribe', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));"<string>"
