> ## 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.

# Latest host agent release (auto-update)

> Public. Windows host agents poll this when idle to download a newer
signed zip. See `docs/AGENT_AUTO_UPDATE.md`.




## OpenAPI

````yaml /openapi.yaml get /v1/agent/latest
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


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


    ```

    Authorization: Bearer gw_live_sk_...

    ```


    Exception: `GET /v1/agent/latest` is public (host auto-update).


    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/agent/latest:
    get:
      tags:
        - Agent
      summary: Latest host agent release (auto-update)
      description: |
        Public. Windows host agents poll this when idle to download a newer
        signed zip. See `docs/AGENT_AUTO_UPDATE.md`.
      operationId: getAgentLatest
      responses:
        '200':
          description: Latest agent metadata
          content:
            application/json:
              schema:
                type: object
                required:
                  - version
                  - download_url
                  - sha256_url
                properties:
                  version:
                    type: string
                    example: 0.1.0
                  download_url:
                    type: string
                    format: uri
                  sha256_url:
                    type: string
                    format: uri
                  sha256:
                    type: string
                    nullable: true
      security: []
components:
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      description: API key in the format `gw_(live|test)_sk_<hex>`

````