> ## Documentation Index
> Fetch the complete documentation index at: https://agno-v2-codex-docs-audit-20260719-0149.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# API Information

> Return the AgentOS instance name, ID, and version.



## OpenAPI

````yaml /reference-api/openapi.yaml get /
openapi: 3.1.0
info:
  title: Agno API Reference
  description: The all-in-one, private, secure agent platform that runs in your cloud.
  version: 2.7.4
servers: []
security: []
paths:
  /:
    get:
      tags:
        - Home
      summary: API Information
      description: Return the AgentOS instance name, ID, and version.
      operationId: get_api_info
      responses:
        '200':
          description: API information retrieved successfully
          content:
            application/json:
              schema:
                properties:
                  name:
                    title: Name
                    type: string
                  id:
                    title: Id
                    type: string
                  version:
                    type: string
                    title: Version
                type: object
                required:
                  - name
                  - id
                  - version
                title: ApiInfoResponse
              examples:
                home:
                  summary: Example home response
                  value:
                    name: AgentOS API
                    id: demo-os
                    version: 1.0.0

````