get https://api.verkada.com/cameras/v1/analytics/lpr/license_plate_of_interest
Returns creation time, description, and license plate number for all License Plates of Interest for an organization.
Log in to see full request history
Response
Returns creation time, description, and license plate number for all License Plates of Interest for an organization.
xxxxxxxxxx
const url = 'https://api.verkada.com/cameras/v1/analytics/lpr/license_plate_of_interest?page_size=1000';
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: