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

# Build version

> Returns build/version information for the running binary.



## OpenAPI

````yaml /trustgate/api/openapi.json get /__/version
openapi: 3.0.0
info:
  description: >-
    Administrative API for managing gateways and their registries, policies,
    consumers, roles and auth credentials.
  title: TrustGate Admin API
  contact:
    name: NeuralTrust
    url: https://neuraltrust.ai/contact
    email: support@neuraltrust.ai
  version: '1.0'
servers:
  - url: https://agentgateway-admin.dev.neuraltrust.ai
    description: Admin API
security: []
paths:
  /__/version:
    get:
      tags:
        - system
      summary: Build version
      description: Returns build/version information for the running binary.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/github_com_NeuralTrust_TrustGate_pkg_version.Info
components:
  schemas:
    github_com_NeuralTrust_TrustGate_pkg_version.Info:
      type: object
      properties:
        app_name:
          type: string
        build_date:
          type: string
        commit:
          type: string
        go_version:
          type: string
        platform:
          type: string
        version:
          type: string

````