> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cyberdesk.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Run Image Signed Url

> Get a temporary signed URL for a screenshot stored in a run's message history.

The requested image URL must be an exact `supabase://run-images/...` reference
present in the authenticated organization's run.



## OpenAPI

````yaml /openapi.json get /v1/runs/{run_id}/image/signed-url
openapi: 3.1.0
info:
  title: Cyberdesk Cloud
  description: >-
    The Cyberdesk API provides programmatic access to all platform features,
    enabling you to automate desktop tasks at scale.
  version: 1.0.0
servers:
  - url: https://api.cyberdesk.io
    description: Production server
  - url: https://cyberdesk-api-dev.fly.dev
    description: Development server
security: []
paths:
  /v1/runs/{run_id}/image/signed-url:
    get:
      tags:
        - runs
      summary: Get Run Image Signed Url
      description: >-
        Get a temporary signed URL for a screenshot stored in a run's message
        history.


        The requested image URL must be an exact `supabase://run-images/...`
        reference

        present in the authenticated organization's run.
      operationId: get_run_image_signed_url_v1_runs__run_id__image_signed_url_get
      parameters:
        - name: run_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Run Id
        - name: image_url
          in: query
          required: true
          schema:
            type: string
            description: >-
              Exact supabase://run-images/... URL from the run_message_history
              image block to sign.
            title: Image Url
          description: >-
            Exact supabase://run-images/... URL from the run_message_history
            image block to sign.
        - name: expires_in
          in: query
          required: false
          schema:
            type: integer
            maximum: 3600
            minimum: 10
            description: URL expiration time in seconds (10-3600).
            default: 3600
            title: Expires In
          description: URL expiration time in seconds (10-3600).
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RunImageSignedUrlResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    RunImageSignedUrlResponse:
      properties:
        supabase_url:
          type: string
          title: Supabase Url
          description: The stable supabase:// URL from run_message_history
        signed_url:
          type: string
          title: Signed Url
          description: A temporary signed URL for viewing or downloading the image
        expires_in:
          type: integer
          title: Expires In
          description: Seconds until the signed URL expires
      type: object
      required:
        - supabase_url
        - signed_url
        - expires_in
      title: RunImageSignedUrlResponse
      description: Response schema for getting a signed URL for a run screenshot image.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          additionalProperties: true
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````