Skip to main content

get_last_detection_info

This method gets information about the last detection for the specified stream.

Method: POST

Endpoint: /get_last_detection_info

Body

{
"stream_url": "rtsp://192.168.1.54/live0"
}

Body Attribute Descriptions

NameTypeDescription
streamUrlstringthe URL of the stream for which to get the last detection information. This URL must exactly match the URL provided to the add_stream endpoint

Response

{
"success": true,
"message": null,
"data": {
"detections": [
{
"stream_url": "Integrated Webcam",
"region": "Work Area",
"time": "2025-02-27 15:49:13",
"class_name": "person",
"condition": {
"type": "count_greater_than",
"count": 0,
"line_name": null,
"alert_direction": null,
"objects": [
{
"object_description": "person",
"confidence": 95,
"bounds": {
"left": 501,
"top": 98,
"width": 196,
"height": 529
}
}
]
},
}
],
"image": "base64-encoded image string"
}
}

Response Attribute Descriptions

NameTypeDescription
successbooleantrue if the operation was successful. false otherwise.
messagestringa human readable message describing the operation result
dataJSONprovides JSON data related to the last detection(s) for the specified video stream

Data Object Attributes

The data object contains a detections element with an array of objects. Each object has the following properties:

NameTypeDescription
stream_urlstringthe RTSP URL for the stream where the detection occurred
regionstringthe friendly name for the region where the detection occurred
timestringthe time (UTC) when the detection occurred
class_namestringthe common object type associated with the detection, or null if no common object type was used.
conditionDetection Conditionthe detection condition that triggered the detection