Skip to main content
GET
/
events
List Agents
curl --request GET \
  --url https://api.zo.computer/events/ \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "rrule": "<string>",
    "instruction": "<string>",
    "created_at": "<string>",
    "updated_at": "<string>",
    "next_run": "<string>",
    "utc": true,
    "title": "<string>",
    "result_delivery_method": "email",
    "model": "<string>",
    "active": true
  }
]

Authorizations

Authorization
string
header
required

Zo API key (zo_sk_...)

Response

200 - application/json

Successful Response

id
string
required

Unique agent identifier

rrule
string
required

Recurrence rule in iCalendar RRULE format

instruction
string
required

Instructions the agent executes

created_at
string
required

ISO 8601 creation timestamp

updated_at
string
required

ISO 8601 last update timestamp

next_run
string | null
required

ISO 8601 timestamp of next scheduled execution, or null if paused

utc
boolean | null

Whether times are in UTC

title
string | null

Human-readable name

result_delivery_method
enum<string> | null

Notification method on completion

Available options:
email,
sms
model
string | null

AI model ID used for execution

active
boolean
default:true

Whether the agent is active and will run on schedule