Get exports
GEThttps://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​
- 200
Successful Response
- application/json
- Schema
- Example (auto)
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
[
{
"id": "string",
"camera": "string",
"name": "string",
"date": 0,
"video_path": "string",
"thumb_path": "string",
"in_progress": true
}
]
- python
- nodejs
- javascript
- curl
- rust
- HTTP.CLIENT
- REQUESTS
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"))
ResponseClear