from parallel import Parallel
client = Parallel()
page = client.monitor.events("monitor_id", limit=20)
for event in page.events:
print(event)import Parallel from "parallel-web";
const client = new Parallel();
const page = await client.monitor.events('monitor_id', { limit: 20 });
for (const event of page.events) {
console.log(event);
}HttpResponse<String> response = Unirest.get("https://api.parallel.ai/v1/monitors/{monitor_id}/events")
.header("x-api-key", "<api-key>")
.asString();curl --request GET \
--url https://api.parallel.ai/v1/monitors/{monitor_id}/events \
--header 'x-api-key: <api-key>'{
"events": [
{
"event_id": "<string>",
"event_group_id": "<string>",
"event_date": "2026-04-07",
"output": {
"basis": [
{
"field": "<string>",
"reasoning": "<string>",
"citations": [],
"confidence": "low"
}
],
"type": "text",
"content": "<string>",
"mcp_tool_calls": [
{
"tool_call_id": "<string>",
"server_name": "<string>",
"tool_name": "<string>",
"arguments": "<string>",
"content": "<string>",
"error": "<string>"
}
],
"beta_fields": {}
},
"event_type": "event_stream"
}
],
"next_cursor": "<string>",
"warnings": [
{
"type": "spec_validation_warning",
"message": "<string>",
"detail": {}
}
]
}{
"type": "error",
"error": {
"ref_id": "fcb2b4f3-c75e-4186-87bc-caa1a8381331",
"message": "Unauthorized: invalid or missing credentials"
}
}{
"type": "error",
"error": {
"ref_id": "fcb2b4f3-c75e-4186-87bc-caa1a8381331",
"message": "Monitor not found"
}
}{
"type": "error",
"error": {
"ref_id": "fcb2b4f3-c75e-4186-87bc-caa1a8381331",
"message": "Unprocessable content: invalid cursor or request validation error"
}
}List Monitor Events
List events for a monitor, newest first.
Pass event_group_id to narrow results to a single execution. Otherwise
returns all executions newest-first; use next_cursor to paginate.
Set include_completions=true to also include no-change executions.
from parallel import Parallel
client = Parallel()
page = client.monitor.events("monitor_id", limit=20)
for event in page.events:
print(event)import Parallel from "parallel-web";
const client = new Parallel();
const page = await client.monitor.events('monitor_id', { limit: 20 });
for (const event of page.events) {
console.log(event);
}HttpResponse<String> response = Unirest.get("https://api.parallel.ai/v1/monitors/{monitor_id}/events")
.header("x-api-key", "<api-key>")
.asString();curl --request GET \
--url https://api.parallel.ai/v1/monitors/{monitor_id}/events \
--header 'x-api-key: <api-key>'{
"events": [
{
"event_id": "<string>",
"event_group_id": "<string>",
"event_date": "2026-04-07",
"output": {
"basis": [
{
"field": "<string>",
"reasoning": "<string>",
"citations": [],
"confidence": "low"
}
],
"type": "text",
"content": "<string>",
"mcp_tool_calls": [
{
"tool_call_id": "<string>",
"server_name": "<string>",
"tool_name": "<string>",
"arguments": "<string>",
"content": "<string>",
"error": "<string>"
}
],
"beta_fields": {}
},
"event_type": "event_stream"
}
],
"next_cursor": "<string>",
"warnings": [
{
"type": "spec_validation_warning",
"message": "<string>",
"detail": {}
}
]
}{
"type": "error",
"error": {
"ref_id": "fcb2b4f3-c75e-4186-87bc-caa1a8381331",
"message": "Unauthorized: invalid or missing credentials"
}
}{
"type": "error",
"error": {
"ref_id": "fcb2b4f3-c75e-4186-87bc-caa1a8381331",
"message": "Monitor not found"
}
}{
"type": "error",
"error": {
"ref_id": "fcb2b4f3-c75e-4186-87bc-caa1a8381331",
"message": "Unprocessable content: invalid cursor or request validation error"
}
}Authorizations
Path Parameters
Query Parameters
Filter to a single execution. Values come from event_group_id in webhook events and listed events. Pagination params are ignored when set.
Pass next_cursor from a previous response to retrieve more events.
Maximum number of events to return. Defaults to 20. Between 1 and 100.
1 <= x <= 100When true, include completion events for executions that ran but detected no material changes. Useful for auditing execution history.
Response
Monitor events retrieved successfully.
Paginated list of monitor events, newest first.
Monitor events returned by this request, ordered newest first.
Append-only event from an event_stream monitor.
Each event represents a distinct material change detected since the previous execution. Events are net-new relative to the cursor; clients should treat them as an append-only log.
- MonitorEventStreamEvent
- MonitorSnapshotEvent
- MonitorCompletionEvent
- MonitorErrorEvent
Show child attributes
Show child attributes
Pass as cursor to retrieve more events. Absent when there are no more events.
Execution caveats for this page of events, e.g. compute limits.
Show child attributes
Show child attributes