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

# List click targets (VP0.5 grounding)

> Sparse click targets in native capture coords from the host focused-window
UI Automation snapshot (P8). Empty if UIA finds nothing or the host is
unavailable. Clients may still inject CV/grid targets via the SDK.




## OpenAPI

````yaml /openapi.yaml get /v1/sessions/{sessionId}/targets
openapi: 3.1.0
info:
  title: Glasswarp Platform API
  version: 1.0.0
  description: >
    Real-time visual access and native input control on Windows machines.

    See any screen. Control any PC. One API.


    ## Authentication


    All `/v1/*` endpoints require a bearer token:


    ```

    Authorization: Bearer gw_live_sk_...

    ```


    API keys are created in the [Console](/console/keys).

    Keys are scoped to your account and can access any rig with API access
    enabled.


    ## Base URL


    `https://signal.glasswarp.com`
  contact:
    name: Glasswarp
    url: https://glasswarp.com
  license:
    name: Proprietary
servers:
  - url: https://signal.glasswarp.com
    description: Production
security:
  - apiKey: []
paths:
  /v1/sessions/{sessionId}/targets:
    get:
      tags:
        - Grounding
      summary: List click targets (VP0.5 grounding)
      description: >
        Sparse click targets in native capture coords from the host
        focused-window

        UI Automation snapshot (P8). Empty if UIA finds nothing or the host is

        unavailable. Clients may still inject CV/grid targets via the SDK.
      operationId: listTargets
      parameters:
        - name: sessionId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Target list
          content:
            application/json:
              schema:
                type: object
                properties:
                  width:
                    type: integer
                  height:
                    type: integer
                  targets:
                    type: array
                    items:
                      $ref: '#/components/schemas/GroundingTarget'
        '404':
          description: Session not found
components:
  schemas:
    GroundingTarget:
      type: object
      required:
        - id
        - x
        - 'y'
        - w
        - h
      properties:
        id:
          type: string
          description: Stable id for click_target / SoM mark
        x:
          type: integer
          description: Native capture origin X
        'y':
          type: integer
          description: Native capture origin Y
        w:
          type: integer
        h:
          type: integer
        role:
          type: string
          example: button
        name:
          type: string
          example: Submit
        source:
          type: string
          enum:
            - uia
            - cv
            - grid
            - client
          description: Where the target came from
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      description: API key in the format `gw_(live|test)_sk_<hex>`

````