Skip to main content

Vod Event

GET 

https://demo.frigate.video/api/vod/event/:event_id

Returns an HLS playlist for the specified object. Append /master.m3u8 or /index.m3u8 for HLS playback.

Request​

Path Parameters

    event_id Event Idrequired

Responses​

Successful Response

Schema
    import http.client

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

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