Skip to main content

Get exports

GET 

https://demo.frigate.video/api/exports

Gets all exports from the database for cameras the user has access to. Returns a list of exports ordered by date (most recent first).

Responses​

Successful Response

Schema
  • Array [
  • idId (string)required

    Unique identifier for the export

    cameraCamera (string)required

    Camera name associated with this export

    nameName (string)required

    Friendly name of the export

    dateDate (number)required

    Unix timestamp when the export was created

    video_pathVideo Path (string)required

    File path to the exported video

    thumb_pathThumb Path (string)required

    File path to the export thumbnail

    in_progressIn Progress (boolean)required

    Whether the export is currently being processed

  • ]
import http.client

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

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