Get a screenshot for a watch at a specific timestamp
curl --request GET \
--url https://api.sitespy.app/api/v1/watch/{uuid}/screenshot/{timestamp} \
--header 'x-api-key: <api-key>'import requests
url = "https://api.sitespy.app/api/v1/watch/{uuid}/screenshot/{timestamp}"
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/{timestamp}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));"<string>"Visual Diff
Get a screenshot for a watch at a specific timestamp
Returns the screenshot image (PNG/JPEG) for a watch that uses the image_ssim_diff processor.
Requires Pro plan.
GET
/
watch
/
{uuid}
/
screenshot
/
{timestamp}
Get a screenshot for a watch at a specific timestamp
curl --request GET \
--url https://api.sitespy.app/api/v1/watch/{uuid}/screenshot/{timestamp} \
--header 'x-api-key: <api-key>'import requests
url = "https://api.sitespy.app/api/v1/watch/{uuid}/screenshot/{timestamp}"
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/{timestamp}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));"<string>"
