Skip to main content
GET
/
agents
/
{id}
/
events
Error
A valid request URL is required to generate request examples
[
  {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "timestamp": "2023-11-07T05:31:56Z",
    "type": "command_start",
    "tool": "shell",
    "input_summary": "<string>",
    "output_summary": "<string>",
    "duration_ms": 123,
    "success": true,
    "metadata": {}
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string<uuid>
required

Query Parameters

tail
integer
default:100

Number of tail events

follow
enum<string>

If "true", stream events via SSE

Available options:
true,
false

Response

Event output (JSON array or SSE stream)

id
string<uuid>
timestamp
string<date-time>
type
enum<string>
Available options:
command_start,
command_complete,
file_read,
file_write,
directory_list,
identity_read,
health_check
tool
enum<string>
Available options:
shell,
filesystem,
identity,
health
input_summary
string

Truncated human-readable input (max 200 chars). May contain command strings.

output_summary
string | null

Metadata-only result summary (exit codes, byte counts). Never contains raw output.

duration_ms
integer | null
success
boolean | null
metadata
object