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

# List screens

> Every desktop running on a computer.

A computer boots with one screen and can run up to **four**. Each is its own X
server, with its own cursor and its own window manager, so an agent working on
one cannot disturb another.

## Path parameters

<ParamField path="id" type="string" required>
  Computer ID (UUID).
</ParamField>

## Response

<ResponseField name="screens" type="array">
  Every screen on the computer, boot screen included.

  <Expandable title="Screen">
    <ResponseField name="id" type="string">
      Screen identifier. The boot screen is always `default`.
    </ResponseField>

    <ResponseField name="display" type="string">
      X display, e.g. `:99` for the boot screen.
    </ResponseField>

    <ResponseField name="width" type="integer">Width in pixels.</ResponseField>
    <ResponseField name="height" type="integer">Height in pixels.</ResponseField>

    <ResponseField name="vnc_port" type="integer">
      VNC port. Derived from the display rather than looked up: `:100` is 6000.
    </ResponseField>

    <ResponseField name="ws_port" type="integer">
      WebSocket port. `:100` is 6081.
    </ResponseField>

    <ResponseField name="default" type="boolean">
      `true` for the screen the computer booted with. It cannot be destroyed.
    </ResponseField>
  </Expandable>
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl https://www.orgo.ai/api/computers/$COMPUTER_ID/screens \
    -H "Authorization: Bearer $ORGO_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "screens": [
      { "id": "default", "display": ":99",  "width": 1920, "height": 1080, "vnc_port": 5999, "ws_port": 5980, "default": true },
      { "id": "screen-1", "display": ":100", "width": 1920, "height": 1080, "vnc_port": 6000, "ws_port": 6081, "default": false }
    ]
  }
  ```
</ResponseExample>


## OpenAPI

````yaml GET /computers/{id}/screens
openapi: 3.1.0
info:
  title: Orgo API
  description: >-
    Launch cloud computers that AI agents can control and interact with. Create
    workspaces, provision computers, and control them programmatically.
  version: 2.0.0
  contact:
    name: Orgo Support
    email: spencer@orgo.ai
    url: https://orgo.ai
servers:
  - url: https://www.orgo.ai/api
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Workspaces
    description: Organize computers into named workspaces
  - name: Computers
    description: Provision and manage virtual computers
  - name: Computer Lifecycle
    description: Start, stop, and restart computers
  - name: Computer Actions
    description: Control mouse, keyboard, and execute commands
  - name: Screens
    description: >-
      More than one desktop on a single computer. Each screen is its own X
      server with its own cursor and window manager, so an agent working on one
      cannot disturb another.
  - name: Streaming
    description: Stream computer display via RTMP
  - name: Files
    description: Upload and download files
  - name: Templates
    description: Author, build, and launch reproducible computers from templates
paths:
  /computers/{id}/screens:
    get:
      tags:
        - Screens
      summary: List screens
      description: Lists every screen on the computer, including the boot screen.
      operationId: listScreens
      parameters:
        - name: id
          in: path
          required: true
          description: Computer ID
          schema:
            type: string
      responses:
        '200':
          description: The computer's screens
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ScreenListResponse'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  schemas:
    ScreenListResponse:
      type: object
      properties:
        screens:
          type: array
          items:
            $ref: '#/components/schemas/Screen'
    Screen:
      type: object
      properties:
        id:
          type: string
          description: Screen identifier. The boot screen is always `default`.
          example: screen-1
        display:
          type: string
          description: X display this screen runs on.
          example: ':100'
        width:
          type: integer
          description: Width in pixels.
          example: 1920
        height:
          type: integer
          description: Height in pixels.
          example: 1080
        vnc_port:
          type: integer
          description: VNC port for this screen.
          example: 6000
        ws_port:
          type: integer
          description: WebSocket port for this screen.
          example: 6081
        default:
          type: boolean
          description: True for the screen the computer boots with. It cannot be destroyed.
          example: false
    Error:
      type: object
      properties:
        error:
          type: string
          description: Error message
  responses:
    Unauthorized:
      description: Invalid or missing API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: Invalid API key
    Forbidden:
      description: Access denied or plan limit reached
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: Access denied
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: Resource not found
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key authentication. Get your key at orgo.ai/workspaces

````