> ## 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.

# Read knowledge entry

> Returns a single knowledge entry with full content. Users can only read entries from agents they own. Admins can read any entry.




## OpenAPI

````yaml /openapi.yaml get /knowledge/entries/{agentId}/{path}
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/entries/{agentId}/{path}:
    parameters:
      - name: agentId
        in: path
        required: true
        schema:
          type: string
        description: Agent ID
      - name: path
        in: path
        required: true
        schema:
          type: string
        description: Entry path (e.g. notes/test.md)
    get:
      summary: Read knowledge entry
      description: >
        Returns a single knowledge entry with full content. Users can only read
        entries from agents they own. Admins can read any entry.
      responses:
        '200':
          description: Entry detail with content
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KnowledgeEntry'
        '401':
          description: Not authenticated
        '403':
          description: Not authorized to view this agent's knowledge
        '404':
          description: Entry not found
      security:
        - bearerAuth: []
components:
  schemas:
    KnowledgeEntry:
      type: object
      properties:
        id:
          type: string
          format: uuid
        agent_id:
          type: string
        path:
          type: string
        title:
          type: string
        entry_type:
          type: string
          enum:
            - note
            - plan
            - decision
            - journal
            - research
            - notebook
        content:
          type: string
          description: Full markdown content (only included in single-entry reads)
        content_hash:
          type: string
        tags:
          type: array
          items:
            type: string
        status:
          type: string
          enum:
            - active
            - archived
        sync_status:
          type: string
          enum:
            - pending
            - synced
            - quarantined
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````