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

# Get Status



## OpenAPI

````yaml /openapi.json get /v1/status
openapi: 3.1.0
info:
  title: Lightsage Public API
  description: Public API for Lightsage CLI and external integrations.
  version: 1.0.0
servers:
  - url: https://api.lightsage.com
    description: Production
security: []
paths:
  /v1/status:
    get:
      tags:
        - Status
      summary: Get Status
      operationId: status_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````