Skip to main content
GET
/
rtstream
/
event
List collection events
curl --request GET \
  --url https://api.videodb.io/rtstream/event \
  --header 'x-access-token: <api-key>'
{
  "success": true,
  "data": {
    "events": [
      {
        "event_id": "event-12345",
        "event_prompt": "Detect when a person enters the room",
        "label": "person-entry"
      }
    ]
  }
}
List all detection events in your account.
  • Returns all events with their IDs, prompts, and labels
  • Events can be reused across multiple alerts and stream indexes

Authorizations

x-access-token
string
header
required

API key for authentication (sk-xxx format)

Response

200 - application/json

List of events

success
boolean
Example:

true

data
object