Get email verification status
curl --request GET \
--url https://api.sitespy.app/api/v1/email \
--header 'x-api-key: <api-key>'import requests
url = "https://api.sitespy.app/api/v1/email"
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', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"email": "user@example.com",
"verified": true,
"muted": false
}Email Verification
Get email verification status
Get the current email address and verification status for your API key.
GET
/
email
Get email verification status
curl --request GET \
--url https://api.sitespy.app/api/v1/email \
--header 'x-api-key: <api-key>'import requests
url = "https://api.sitespy.app/api/v1/email"
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', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"email": "user@example.com",
"verified": true,
"muted": false
}Authorizations
API key for authentication. You can find your API key in the Site Spy dashboard under Settings → API.

