> ## 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 readyz



## OpenAPI

````yaml /openapi/platform.json get /readyz
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:
  /readyz:
    get:
      tags:
        - system
      operationId: getReadiness
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                additionalProperties: false
                type: object
                required:
                  - status
                  - version
                  - sourceCommit
                properties:
                  status:
                    type: string
                    enum:
                      - ready
                  version:
                    type: string
                  sourceCommit:
                    type: string
        '500':
          description: Default Response
          content:
            application/json:
              schema:
                additionalProperties: false
                type: object
                required:
                  - error
                properties:
                  error:
                    additionalProperties: false
                    type: object
                    required:
                      - code
                      - message
                      - correlationId
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                      correlationId:
                        format: uuid
                        type: string

````