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

# Get healthz



## OpenAPI

````yaml /openapi/platform.json get /healthz
openapi: 3.1.0
info:
  title: GOL Platform API
  description: Public control-plane API for GOL developer projects and credentials.
  version: 0.1.0
servers:
  - url: http://localhost:4100
    description: Local development
security: []
tags:
  - name: system
  - name: authentication
  - name: projects
  - name: api-keys
  - name: audit
paths:
  /healthz:
    get:
      tags:
        - system
      operationId: getHealth
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                additionalProperties: false
                type: object
                required:
                  - status
                  - version
                  - sourceCommit
                properties:
                  status:
                    type: string
                    enum:
                      - ok
                  version:
                    type: string
                  sourceCommit:
                    type: string

````