Get screenshot history timestamps
curl --request GET \
--url https://api.sitespy.app/api/v1/watch/{uuid}/screenshot/history \
--header 'x-api-key: <api-key>'import requests
url = "https://api.sitespy.app/api/v1/watch/{uuid}/screenshot/history"
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/watch/{uuid}/screenshot/history', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"timestamps": [
"<string>"
]
}Screenshots
Get screenshot history timestamps
Returns the list of screenshot timestamps available for a watch with screenshot monitoring enabled.
GET
/
watch
/
{uuid}
/
screenshot
/
history
Get screenshot history timestamps
curl --request GET \
--url https://api.sitespy.app/api/v1/watch/{uuid}/screenshot/history \
--header 'x-api-key: <api-key>'import requests
url = "https://api.sitespy.app/api/v1/watch/{uuid}/screenshot/history"
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/watch/{uuid}/screenshot/history', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"timestamps": [
"<string>"
]
}
