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

# Public system status — request-path + dependency health



## OpenAPI

````yaml /api-reference/openapi.json get /status
openapi: 3.0.0
info:
  title: Wardin API
  description: AI governance & observability platform — external REST API
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /status:
    get:
      tags:
        - status
      summary: Public system status — request-path + dependency health
      operationId: StatusController_get
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SystemStatusDto'
components:
  schemas:
    SystemStatusDto:
      type: object
      properties:
        status:
          type: string
          enum:
            - operational
            - degraded
            - down
            - unknown
          description: Roll-up across all components, weighted by customer impact.
          example: operational
        components:
          type: array
          items:
            $ref: '#/components/schemas/StatusComponentDto'
        updatedAt:
          type: string
          description: RFC3339 timestamp of this snapshot.
      required:
        - status
        - components
        - updatedAt
    StatusComponentDto:
      type: object
      properties:
        name:
          type: string
          example: Gateway
        group:
          type: string
          enum:
            - Core
            - Data
            - Communication
            - Integrations
          example: Core
        status:
          type: string
          enum:
            - operational
            - degraded
            - down
            - unknown
          example: operational
        critical:
          type: boolean
          description: >-
            Customer-impact weight. A critical component down = major outage; a
            non-critical one down only degrades (e.g. stale dashboards).
        detail:
          type: string
          description: Optional sub-label, e.g. the underlying vendor.
          example: ClickHouse
      required:
        - name
        - group
        - status
        - critical

````