Events
List Job Events
Retrieve a paginated list of events for a specific job
GET
Requires version 1.1.0 or later of the Archetype platform.
Overview
This endpoint returns a paginated list of events emitted during job execution. Events provide observability into what happened during processing, including informational messages, warnings, errors, and terminal outcomes.Request
string
required
The unique job identifier
string
Filter events by level:
INFO, WARN, ERROR, SUCCESS, or FAILEDstring
Filter events by type (e.g.,
inference.success, inference.failed)string
Filter events associated with a specific input
integer
Number of items to skip for pagination (default: 0)
integer
Maximum number of items to return per page
Response
string
The job identifier
integer
Total number of events matching the filter criteria
integer
Current pagination offset
integer
Maximum number of items returned
array
Array of event objects, each containing:
id— Unique event identifierevent_type— Type of event (e.g.,inference.success)level— Event level:INFO,WARN,ERROR,SUCCESS, orFAILEDmessage— Optional human-readable messagepayload— Event-specific datainput_id— Associated input ID (if applicable)index— Event index within the input (if applicable)created_at— Event timestamp