Config Schema
GEThttps://demo.frigate.video/api/config/schema.json
Config Schema
Responses​
- 200
 
Successful Response
- application/json
 
- Schema
 
Schema
- 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/config/schema.json", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
ResponseClear