Vod Hour
GEThttps://demo.frigate.video/api/vod/:year_month/:day/:hour/:camera_name/:tz_name
Vod Hour
Request
Path Parameters
year_month Year Monthrequired
day Dayrequired
hour Hourrequired
camera_name Camera Namerequired
tz_name Tz Namerequired
Responses
- 200
- 422
Successful Response
- application/json
- Schema
Schema
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/vod/:year_month/:day/:hour/:camera_name/:tz_name", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
ResponseClear