Skip to main content

Preview Ts

GET 

https://demo.frigate.video/api/preview/:camera_name/start/:start_ts/end/:end_ts

Get all mp4 previews relevant for time period.

Request

Path Parameters

    camera_name Camera Namerequired
    start_ts Start Tsrequired
    end_ts End Tsrequired

Responses

Successful Response

Schema
import http.client

conn = http.client.HTTPSConnection("demo.frigate.video")
payload = ''
headers = {
'Accept': 'application/json'
}
conn.request("GET", "/api/preview/:camera_name/start/:start_ts/end/:end_ts", 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
ResponseClear

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