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

> Get structured result for a completed job.

Get structured result for a completed job.

### Path parameters

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

### Response

`JobResultResponse`

<ResponseField name="id" type="string" required />

<ResponseField name="status" type="string" required />

<ResponseField name="summary" type="string,null" />

<ResponseField name="error" type="string,null" />

<ResponseField name="artifacts" type="ArtifactResponse[]">
  <Expandable title="ArtifactResponse">
    <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>
  </Expandable>
</ResponseField>

<ResponseField name="cost_usd" type="number,null" />

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

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "status": "pending",
    "summary": "Two-person tent, green — replacement for damaged pole set.",
    "error": "string",
    "artifacts": [],
    "cost_usd": 1.5
  }
  ```
</ResponseExample>
