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

# Get System Status



## OpenAPI

````yaml api-reference/openapi.json get /status
openapi: 3.1.0
info:
  title: Cachet
  version: 0.0.1
  description: >-
    API documentation for Cachet, the open-source, self-hosted status page
    system.
servers:
  - url: http://localhost/api
  - url: https://v3.cachethq.io/api
    description: The Cachet v3 demo server.
security:
  - http: []
tags:
  - name: Cachet
  - name: Components
  - name: Component Groups
  - name: Incidents
  - name: Incident Updates
  - name: Incident Templates
  - name: Metrics
  - name: Metric Points
  - name: Schedules
  - name: Schedule Updates
paths:
  /status:
    get:
      tags:
        - Cachet
      summary: Get System Status
      operationId: cachet.api.status
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      status:
                        type: string
                        examples:
                          - operational
                      message:
                        type: string
                        examples:
                          - All Systems Operational
                    required:
                      - status
                      - message
                required:
                  - data
      security: []
components:
  securitySchemes:
    http:
      type: http
      scheme: bearer

````