> ## 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 project info

> Returns information about the loaded project including the current release version.



## OpenAPI

````yaml /openapi/agent.json get /api/projects/{project}
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/projects/{project}:
    get:
      tags:
        - Projects
      summary: Get project info
      description: >-
        Returns information about the loaded project including the current
        release version.
      operationId: getProjectInfo
      parameters:
        - name: project
          in: path
          description: Project slug or ID
          required: true
          schema:
            type: string
          example: my-project
      responses:
        '200':
          description: Project information
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectInfo'
        '404':
          description: Project not found
components:
  schemas:
    ProjectInfo:
      type: object
      description: Information about a loaded project
      required:
        - project_id
        - project_key
        - release_id
        - release_version
      properties:
        project_id:
          type: string
          description: Unique identifier of the project
        project_key:
          type: string
          description: Human-readable project key/slug
        release_id:
          type: string
          description: ID of the currently loaded release
        release_version:
          type: string
          description: Semantic version of the loaded release
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: X-Access-Token
      description: Evaluation token from project settings

````