get https://api.verkada.com/cameras/v1/footage/thumbnails/latest
Returns the latest thumbnail from a specified camera in either low resolution or high resolution.
Log in to see full request history
Response
200ok
Returns the latest thumbnail from a specified camera in either low resolution or high resolution.
200ok
xxxxxxxxxx
const url = 'https://api.verkada.com/cameras/v1/footage/thumbnails/latest?resolution=low-res';
const options = {method: 'GET'};
​
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));
Try It!
to start a request and see the response here!