Skip to main content

Label Snapshot

GET 

https://demo.frigate.video/api/:camera_name/:label/snapshot.jpg

Returns the snapshot image from the latest event for the given camera and label combo

Request

Path Parameters

    camera_name Camera Namerequired
    label Labelrequired

Responses

Successful Response

Schema
import http.client

conn = http.client.HTTPSConnection("demo.frigate.video")
payload = ''
headers = {
'Accept': 'application/json'
}
conn.request("GET", "/api/:camera_name/:label/snapshot.jpg", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
Request Collapse all
Base URL
https://demo.frigate.video/api
Parameters
— pathrequired
— pathrequired
ResponseClear

Click the Send API Request button above and see the response here!