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

# List agents with knowledge

> Returns agents that have knowledge entries, with entry counts and last updated timestamps. Scoped to ownership — users see their own agents, admins see all.




## OpenAPI

````yaml /openapi.yaml get /knowledge/agents
openapi: 3.0.3
info:
  title: Hill90 API
  description: Hill90 platform API — agent management and lifecycle operations.
  version: 0.1.0
servers:
  - url: /
    description: Relative (behind Traefik reverse proxy)
security: []
paths:
  /knowledge/agents:
    get:
      summary: List agents with knowledge
      description: >
        Returns agents that have knowledge entries, with entry counts and last
        updated timestamps. Scoped to ownership — users see their own agents,
        admins see all.
      responses:
        '200':
          description: Agent knowledge stats
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/KnowledgeAgent'
        '401':
          description: Not authenticated
        '403':
          description: Requires user role
      security:
        - bearerAuth: []
components:
  schemas:
    KnowledgeAgent:
      type: object
      properties:
        agent_id:
          type: string
        entry_count:
          type: integer
        last_updated:
          type: string
          format: date-time
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````