Get the current rating for an exact detected change
curl --request GET \
--url https://api.sitespy.app/api/v1/watch/{uuid}/change-feedback/{to_timestamp} \
--header 'x-api-key: <api-key>'import requests
url = "https://api.sitespy.app/api/v1/watch/{uuid}/change-feedback/{to_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}/change-feedback/{to_timestamp}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"watch_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"from_timestamp": 123,
"to_timestamp": 123,
"verdict": "useful",
"reason": "<string>",
"intent": "<string>",
"source": "dashboard",
"created_at": 123,
"updated_at": 123
}Change Feedback
Get the current rating for an exact detected change
GET
/
watch
/
{uuid}
/
change-feedback
/
{to_timestamp}
Get the current rating for an exact detected change
curl --request GET \
--url https://api.sitespy.app/api/v1/watch/{uuid}/change-feedback/{to_timestamp} \
--header 'x-api-key: <api-key>'import requests
url = "https://api.sitespy.app/api/v1/watch/{uuid}/change-feedback/{to_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}/change-feedback/{to_timestamp}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"watch_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"from_timestamp": 123,
"to_timestamp": 123,
"verdict": "useful",
"reason": "<string>",
"intent": "<string>",
"source": "dashboard",
"created_at": 123,
"updated_at": 123
}Authorizations
API key for authentication. You can find your API key in the Site Spy dashboard under Settings → API.
Response
200 - application/json
Existing feedback, or an empty object when unrated

