Skip to main content

Get Snapshot From Recording

GET 

https://demo.frigate.video/api/:camera_name/recordings/:frame_time/snapshot.:format

Get Snapshot From Recording

Request

Path Parameters

    camera_name Camera Namerequired
    frame_time Frame Timerequired
    format Formatrequired

    Possible values: [png, jpg]

Query Parameters

    height Height

Responses

Successful Response

Schema
import http.client

conn = http.client.HTTPSConnection("demo.frigate.video")
payload = ''
headers = {
'Accept': 'application/json'
}
conn.request("GET", "/api", 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
— pathrequired
— query
ResponseClear

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