> ## 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 agent journal entries

> Returns memory journal entries for context persistence, newest first.



## OpenAPI

````yaml /openapi.yaml get /agents/{id}/journal
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:
  /agents/{id}/journal:
    parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          format: uuid
    get:
      summary: List agent journal entries
      description: Returns memory journal entries for context persistence, newest first.
      parameters:
        - name: limit
          in: query
          schema:
            type: integer
            default: 100
            maximum: 500
      responses:
        '200':
          description: Journal entries
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: string
                      format: uuid
                    agent_id:
                      type: string
                      format: uuid
                    entry_type:
                      type: string
                      enum:
                        - observation
                        - decision
                        - plan
                        - note
                        - error
                    content:
                      type: string
                    created_at:
                      type: string
                      format: date-time
        '404':
          description: Agent not found
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````