# REST API - Get Video URL

## Endpoint
`GET https://api.screenreply.com/public/integration/{workspaceId}/recordings/{recordingId}/presign`

## Description
Returns a secure, temporary pre-signed URL to directly view or download the actual video file from the storage bucket.

## Path Parameters
| Parameter | Type | Description |
|-----------|------|-------------|
| workspaceId | String (UUID) | Unique identifier of your workspace (required) |
| recordingId | String (UUID) | Target recording ID (required) |

## Response
- **Status:** 200 OK
```json
{
  "url": "https://storage.provider.com/bucket/path/to/video.mp4?Signature=..."
}
```

## Example Request
```bash
curl -X GET https://api.screenreply.com/public/integration/{workspaceId}/recordings/{recordingId}/presign \
  -H "Authorization: Bearer YOUR_API_KEY"
```