get https://api.verkada.com/cameras/v1/footage/link
Returns link to video footage for a specified camera which will play footage from a specified timestamp.
Log in to see full request history
Response
Returns link to video footage for a specified camera which will play footage from a specified timestamp.
xxxxxxxxxx
const url = 'https://api.verkada.com/cameras/v1/footage/link';
const options = {method: 'GET', headers: {accept: 'application/json'}};
​
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! Or choose an example: