Skip to main content
GET
/
v1
/
events
/
{event_id}
Get an event by ID
curl --request GET \
  --url https://api.honeyhive.ai/v1/events/{event_id} \
  --header 'Authorization: Bearer <token>'
{
  "event": {
    "event_id": "<string>",
    "project": "<string>",
    "project_id": "<string>",
    "source": "<string>",
    "event_name": "<string>",
    "session_id": "<string>",
    "parent_id": "<string>",
    "children_ids": [
      "<string>"
    ],
    "config": {},
    "inputs": {},
    "outputs": {},
    "error": "<string>",
    "start_time": 123,
    "end_time": 123,
    "duration": 123,
    "metadata": {},
    "feedback": {},
    "metrics": {},
    "user_properties": {}
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

event_id
string<uuid>
required

The unique identifier of the event to retrieve

Response

Event retrieved successfully

Response for GET /events/:event_id — single event payload

event
object
required

Full event object for legacy event creation endpoints