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

# Get version

> Returns the current version of the Agent service.



## OpenAPI

````yaml /openapi/agent.json get /api/version
openapi: 3.1.0
info:
  title: GoRules Agent API
  description: >-
    High-performance rule evaluation service. The Agent loads decision models
    from releases and executes them with minimal latency.
  contact:
    name: GoRules
    email: hi@gorules.io
  version: 1.23.3
servers: []
security:
  - AccessToken: []
tags:
  - name: Evaluation
    description: Evaluate decision models
  - name: Projects
    description: Project information
  - name: System
    description: Health and version endpoints
paths:
  /api/version:
    get:
      tags:
        - System
      summary: Get version
      description: Returns the current version of the Agent service.
      operationId: getVersion
      responses:
        '200':
          description: Agent version string
          content:
            text/plain:
              schema:
                type: string
                example: 1.23.3
      security: []
components:
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: X-Access-Token
      description: Evaluation token from project settings

````