Ask whether to turn email notifications off (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
Ask whether to turn email notifications off (no auth)
Renders the confirmation page for the unsubscribe link carried by change notification emails. Changes nothing: mail scanners dereference every URL in a message, so the account is only muted by the POST the page submits.
GET
/
email
/
unsubscribe
Ask whether to turn email notifications off (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>"
