> ## Documentation Index
> Fetch the complete documentation index at: https://docs.luly.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Event Stream

> Retrieve stream of events that occured during the call.

### Headers

<ParamField header="authorization" type="string" required={true}>
  Your API key for authentication.
</ParamField>

### Path Parameters

<ParamField path="call_id" type="string" required={true}>
  The unique identifier of the call for which you want to retrieve detailed information.
</ParamField>

### Response

<ResponseField name="level" type="string">
  The level of the event - `queue` or `call`
</ResponseField>

<ResponseField name="message" type="string">
  The message of the event.
</ResponseField>

<ResponseField name="category" type="string">
  The category of the event - `info`, `performance` or `error`.
</ResponseField>

<ResponseField name="call_id" type="string">
  The unique identifier for the call.
</ResponseField>

<ResponseField name="timestamp" type="string">
  When the event occurred.
</ResponseField>

<ResponseExample>
  ```json Response
  {
    "level": "<string>",
    "message": "<string>",
    "category": "<string>",
    "call_id": "<string>",
    "timestamp": "<string>"
  }
  ```
</ResponseExample>
