> ## Documentation Index
> Fetch the complete documentation index at: https://docs.stateset.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Stream Job Events

> Stream Server-Sent Events for a single job. Filters the global event broker to only events for this job_id and only after confirming the API key's tenant owns…

Stream Server-Sent Events for a single job.

Filters the global event broker to only events for this job\_id and
only after confirming the API key's tenant owns the job. Closes the
stream after a terminal status (succeeded/failed/cancelled) is seen,
or after the lifetime cap.

### Path parameters

<ParamField path="job_id" type="string (uuid)" required />

### Response

Returns `any`.

<Note>
  The spec this page is generated from declares this response as an untyped object — the server
  returns JSON, but its shape is not published. Read a live response to see the fields; treat any
  field you find as unversioned until the spec names it.
</Note>

### Status codes

| Code  | Meaning             |
| ----- | ------------------- |
| `200` | Successful Response |
| `422` | Validation Error    |

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url 'https://api.computer.stateset.app/api/v1/jobs/{job_id}/events' \
    --header 'X-API-Key: YOUR_API_KEY'
  ```
</RequestExample>
