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

> Markdown transcript of a single job — parity with the JWT API…

Markdown transcript of a single job — parity with the JWT API.

Includes job metadata, instruction, summary, error (if any), and the
full tool-call timeline with inputs/outputs and screenshot keys.
Useful for archiving runs or feeding past job context back into a
follow-up agent invocation.

### Path parameters

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

### Response

Returns `text/markdown` — Markdown transcript of the job (`text/markdown`), sent as an attachment: job metadata, instruction, summary, error (if any), and the full tool-call timeline with inputs/outputs and screenshot keys.

### Status codes

| Code  | Meaning                                                                                                                                                                                               |
| ----- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `200` | Markdown transcript of the job (`text/markdown`), sent as an attachment: job metadata, instruction, summary, error (if any), and the full tool-call timeline with inputs/outputs and screenshot keys. |
| `422` | Validation Error                                                                                                                                                                                      |

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

<ResponseExample>
  ```json 200 theme={null}
  "# Task: Check pricing page\n\n- **Job id**: `3fa85f64-5717-4562-b3fc-2c963f66afa6`\n- **Template**: `shopify`\n- **Status**: `completed`\n- **Tokens**: 1250 in / 310 out\n- **Cost**: $0.0421\n\n### #1 — `computer`\n\n**Input**:\n\n- **action**: `screenshot`\n"
  ```
</ResponseExample>
