Events
List Job Events
Retrieve a paginated list of events for a specific job
GET
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
The unique job identifier
Filter events by level:
INFO, WARN, ERROR, SUCCESS, or FAILEDFilter events by type (e.g.,
inference.success, inference.failed)Filter events associated with a specific input
Number of items to skip for pagination (default: 0)
Maximum number of items to return per page
Response
The job identifier
Total number of events matching the filter criteria
Current pagination offset
Maximum number of items returned
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