Skip to main content

Recordings

GET 

https://demo.frigate.video/api/:camera_name/recordings

Return specific camera recordings between the given 'after'/'end' times. If not provided the last hour will be used

Request

Path Parameters

    camera_name Camera Namerequired

Query Parameters

    after After
    Default value: 1733228876.15567
    before Before
    Default value: 1733232476.15567

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/recordings", 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
— query
— query
ResponseClear

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