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

# Info

> Get service information.

Returns the server name, version, and feature flags. This endpoint does
not require authentication.



## OpenAPI

````yaml /openapi.json get /info
openapi: 3.1.0
info:
  title: Aegra
  description: Production-ready Agent Protocol server
  version: 0.9.24
servers: []
security: []
tags:
  - name: Assistants
    description: A configured instance of a graph.
  - name: Threads
    description: Accumulated state and outputs from a group of runs.
  - name: Thread Runs
    description: Invoke a graph on a thread, updating its persistent state.
  - name: Stateless Runs
    description: Invoke a graph without state or memory persistence.
  - name: Crons
    description: Scheduled recurring runs on a cron schedule.
  - name: Store
    description: Persistent key-value and semantic storage available from any thread.
  - name: Event Streaming
    description: Agent Protocol v2 thread event streaming and commands.
  - name: Health
    description: Server health checks and service information.
paths:
  /info:
    get:
      tags:
        - Health
      summary: Info
      description: |-
        Get service information.

        Returns the server name, version, and feature flags. This endpoint does
        not require authentication.
      operationId: info_info_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InfoResponse'
components:
  schemas:
    InfoResponse:
      properties:
        name:
          type: string
          title: Name
          description: Service name.
        version:
          type: string
          title: Version
          description: Current server version.
        description:
          type: string
          title: Description
          description: Service description.
        status:
          type: string
          title: Status
          description: Current service status.
        flags:
          additionalProperties: true
          type: object
          title: Flags
          description: Feature flags indicating available capabilities.
      type: object
      required:
        - name
        - version
        - description
        - status
        - flags
      title: InfoResponse
      description: Info endpoint response model

````