Skip to main content

Get a single export

GET 

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

Gets a specific export by ID. The user must have access to the camera associated with the export.

Request​

Path Parameters

    export_id Export Idrequired

Responses​

Successful Response

Schema
    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/:export_id", 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
ResponseClear

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