Job event stream (SSE)
curl --request GET \
--url https://api.gizmo.antimlabs.com/v1/jobs/{job_id}/events{
"error": {
"code": "<string>",
"message": "<string>",
"status": 123
}
}Jobs
Job event stream (SSE)
Real-time Server-Sent Events stream of generation progress. Events include pipeline stage transitions, asset completion notifications, and error reports.
The stream closes automatically when the job reaches a terminal state (succeeded, failed, cancelled).
Event types: stage_start, stage_complete, asset_ready, error, ping, done
Use the after parameter to resume from a specific sequence number (e.g., after a reconnection).
GET
/
v1
/
jobs
/
{job_id}
/
events
Job event stream (SSE)
curl --request GET \
--url https://api.gizmo.antimlabs.com/v1/jobs/{job_id}/events{
"error": {
"code": "<string>",
"message": "<string>",
"status": 123
}
}⌘I