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

# Get entity timeline

> Returns a paginated array of events for the entity. Events are stored in FalkorDB as :Event nodes connected via :HAD_EVENT.



## OpenAPI

````yaml /api-reference/memory-api.json get /v1/memory/entity/{entity_id}/timeline
openapi: 3.1.0
info:
  title: Strattum Memory API
  description: >-
    REST API that serves entity context — profile, timeline, graph, sources and
    formatted context — for agents and UIs. (PRD-003, Workstream 1.3)
  version: 1.0.0
servers: []
security: []
paths:
  /v1/memory/entity/{entity_id}/timeline:
    get:
      tags:
        - memory
      summary: Get entity timeline
      description: >-
        Returns a paginated array of events for the entity. Events are stored in
        FalkorDB as :Event nodes connected via :HAD_EVENT.
      operationId: get_timeline_v1_memory_entity__entity_id__timeline_get
      parameters:
        - name: entity_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Entity Id
        - name: since
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: ISO-8601 lower bound
            title: Since
          description: ISO-8601 lower bound
        - name: until
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: ISO-8601 upper bound
            title: Until
          description: ISO-8601 upper bound
        - name: event_types
          in: query
          required: false
          schema:
            anyOf:
              - type: array
                items:
                  type: string
              - type: 'null'
            description: Filter by event type(s)
            title: Event Types
          description: Filter by event type(s)
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 500
            minimum: 1
            default: 50
            title: Limit
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TimelineResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    TimelineResponse:
      properties:
        entity_id:
          type: string
          title: Entity Id
        events:
          items:
            $ref: '#/components/schemas/TimelineEventResponse'
          type: array
          title: Events
        count:
          type: integer
          title: Count
      type: object
      required:
        - entity_id
        - events
        - count
      title: TimelineResponse
      description: Response for GET /entity/{entity_id}/timeline.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    TimelineEventResponse:
      properties:
        event_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Event Id
        event_type:
          anyOf:
            - type: string
            - type: 'null'
          title: Event Type
        channel:
          anyOf:
            - type: string
            - type: 'null'
          title: Channel
        summary:
          anyOf:
            - type: string
            - type: 'null'
          title: Summary
        timestamp:
          anyOf:
            - type: string
            - type: 'null'
          title: Timestamp
        properties:
          additionalProperties: true
          type: object
          title: Properties
      type: object
      required:
        - event_id
        - event_type
        - channel
        - summary
        - timestamp
      title: TimelineEventResponse
      description: A single timeline event.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````