Get rendered diff overlay image
curl --request GET \
--url https://api.sitespy.app/api/v1/watch/{uuid}/screenshot/diff \
--header 'x-api-key: <api-key>'import requests
url = "https://api.sitespy.app/api/v1/watch/{uuid}/screenshot/diff"
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/diff', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));"<string>"Visual Diff
Get rendered diff overlay image
Returns a rendered diff image (JPEG) showing changed areas highlighted in red. Compares two screenshot snapshots using OpenCV. Requires Pro plan.
GET
/
watch
/
{uuid}
/
screenshot
/
diff
Get rendered diff overlay image
curl --request GET \
--url https://api.sitespy.app/api/v1/watch/{uuid}/screenshot/diff \
--header 'x-api-key: <api-key>'import requests
url = "https://api.sitespy.app/api/v1/watch/{uuid}/screenshot/diff"
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/diff', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));"<string>"Authorizations
API key for authentication. You can find your API key in the Site Spy dashboard under Settings → API.
Path Parameters
Query Parameters
Which asset to return (before, after, or rendered_diff)
Available options:
before, after, rendered_diff Response
Diff overlay image
The response is of type file.

