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

# krnx_getBuildInfo

> Node build metadata



## OpenAPI

````yaml specs/krnx_getBuildInfo.json POST /
openapi: 3.1.0
info:
  description: >-
    Generated from internal/krnxapi/api.go by tools/rpcdocgen. Do not edit by
    hand.
  title: KRNX JSON-RPC
  version: 1.0.0
servers:
  - url: https://rpc.kronex.network
security: []
paths:
  /:
    post:
      summary: krnx_getBuildInfo
      description: >-
        Returns the runtime build metadata of the node: version, commit, and
        build settings. Useful for confirming that every node in a pool or
        gateway fleet runs the same binary.
      operationId: krnx_getBuildInfo
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Request'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Response'
          description: JSON-RPC response
components:
  schemas:
    Request:
      properties:
        id:
          example: 1
          type: integer
        jsonrpc:
          enum:
            - '2.0'
          example: '2.0'
          type: string
        method:
          enum:
            - krnx_getBuildInfo
          example: krnx_getBuildInfo
          type: string
        params:
          description: This method takes no parameters.
          example: []
          maxItems: 0
          minItems: 0
          type: array
      required:
        - jsonrpc
        - method
        - params
        - id
      type: object
    Response:
      properties:
        error:
          description: Present instead of `result` when the call fails.
          properties:
            code:
              example: -32602
              type: integer
            message:
              type: string
          type: object
        id:
          example: 1
          type: integer
        jsonrpc:
          example: '2.0'
          type: string
        result:
          $ref: '#/components/schemas/krnxBuildInfo'
      type: object
    krnxBuildInfo:
      properties:
        auxpowRuntime:
          type: boolean
        auxpowSchema:
          type: string
        buildTime:
          type: string
        clientVersion:
          type: string
        gitBranch:
          type: string
        gitCommit:
          type: string
        krnxBuild:
          type: string
      required:
        - auxpowRuntime
        - auxpowSchema
        - buildTime
        - clientVersion
        - gitBranch
        - gitCommit
        - krnxBuild
      type: object

````