Get a single export
GEThttps://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​
- 200
- 422
Successful Response
- application/json
- Schema
- Example (auto)
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
{
"id": "string",
"camera": "string",
"name": "string",
"date": 0,
"video_path": "string",
"thumb_path": "string",
"in_progress": true
}
Validation Error
- application/json
- Schema
- Example (auto)
Schema
detail object[]
{
"detail": [
{
"loc": [
"string",
0
],
"msg": "string",
"type": "string"
}
]
}
- 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/:export_id", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
ResponseClear