Skip to main content

Is Healthy

GET 

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

Is Healthy

Responses

Successful Response

Schema
    stringstring
import http.client

conn = http.client.HTTPSConnection("demo.frigate.video")
payload = ''
headers = {
'Accept': 'text/plain'
}
conn.request("GET", "/api/", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
Request Collapse all
Base URL
https://demo.frigate.video/api
ResponseClear

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