Skip to main content

Event Snapshot

GET 

https://demo.frigate.video/api/events/:event_id/snapshot.jpg

Returns a snapshot image for the specified object id. NOTE: The query params only take affect while the event is in-progress. Once the event has ended the snapshot configuration is used.

Request​

Path Parameters

    event_id Event Idrequired

Query Parameters

    download object
    Default value: false
    timestamp object
    bbox object
    crop object
    height object
    quality object
    Default value: 70

Responses​

Successful Response

Schema
    import http.client

    conn = http.client.HTTPSConnection("demo.frigate.video")
    payload = ''
    headers = {
    'Accept': 'application/json'
    }
    conn.request("GET", "/api/events/:event_id/snapshot.jpg", 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
    — query
    — query
    — query
    — query
    — query
    — query
    ResponseClear

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