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

# Get Status

> Retrieve the status of the software running.



## OpenAPI

````yaml /openapi/generated-api-methods.json GET /v1/status
openapi: 3.1.0
info:
  title: Generated API methods
  version: 1.0.0
  description: Generated from imported ApiMethodV2 blocks.
servers:
  - url: https://{sql_node}
    variables:
      sql_node:
        default: sql_node
  - url: http://oc1-lts0:9090
security: []
paths:
  /v1/status:
    get:
      tags:
        - System Information REST Endpoints
      summary: Get Status
      description: Retrieve the status of the software running.
      operationId: getSystemInformationRestEndpointsGetStatus
      parameters: []
      responses:
        '200':
          description: Response
          content:
            text/plain:
              schema:
                type: string
              examples:
                response:
                  value: Active
      servers:
        - url: http://oc1-lts0:9090
      x-codeSamples:
        - lang: curl
          label: curl
          source: |-
            curl --location --request GET 'http://oc1-lts0:9090/v1/status' \
            --header 'Accept: application/json'

````