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

# Get rig details

> Get details and capabilities for a specific rig.



## OpenAPI

````yaml /openapi.yaml get /v1/rigs/{rigId}
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/rigs/{rigId}:
    get:
      tags:
        - Rigs
      summary: Get rig details
      description: Get details and capabilities for a specific rig.
      operationId: getRig
      parameters:
        - name: rigId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Rig details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Rig'
        '404':
          description: Rig not found
components:
  schemas:
    Rig:
      type: object
      properties:
        id:
          type: string
          example: rig_abc123
        name:
          type: string
          example: Gaming PC
        online:
          type: boolean
        gpu:
          type: string
          example: NVIDIA RTX 4090
        os:
          type: string
          example: Windows 11
        api_access_enabled:
          type: boolean
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      description: API key in the format `gw_(live|test)_sk_<hex>`

````