> ## 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.

# Get Job Artifacts

> Get artifacts produced by a job.

Get artifacts produced by a job.

### Path parameters

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

### Response

`ArtifactResponse[]` — each element:

<ResponseField name="id" type="string" required>
  Artifact UUID.
</ResponseField>

<ResponseField name="type" type="string" required>
  One of: text, image. Indicates content type at storage\_key.
</ResponseField>

<ResponseField name="storage_key" type="string" required>
  Object-storage key for the artifact.
</ResponseField>

<ResponseField name="url" type="string,null">
  Short-lived presigned download URL when the artifact is downloadable.
</ResponseField>

### 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}/artifacts' \
    --header 'X-API-Key: YOUR_API_KEY'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  [
    {
      "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
      "type": "standard",
      "storage_key": "string",
      "url": "https://example.com/webhooks/stateset"
    }
  ]
  ```
</ResponseExample>
