> ## 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 Replay Screenshot

> Presigned URL for a single replay step's screenshot. URL expires in 300s…

Presigned URL for a single replay step's screenshot.

URL expires in 300s. Tenants should fetch immediately or refresh by
re-calling this endpoint — the URL is not stable across calls.

### Path parameters

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

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

### Response

`ScreenshotUrlResponse`

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

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

<ResponseExample>
  ```json 200 theme={null}
  {
    "url": "https://example.com/webhooks/stateset"
  }
  ```
</ResponseExample>
