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

# Dashboard Activity

> Recent-activity feed - a unified, newest-first log of memory events.

Every event is derived from existing rows (memory_records, project_sources,
sip_telemetry); no event-log table exists. ``limit`` caps the merged feed
(default 15, max 50).

# IDOR AUDIT PASS - the helper filters every underlying query by auth.user_id.



## OpenAPI

````yaml get /api/v1/dashboard/activity
openapi: 3.1.0
info:
  title: EDN Memory Engine
  version: 0.1.0
servers:
  - description: EDN evaluation endpoint
    url: https://api.tensorpro.ai
security:
  - EDNApiKey: []
paths:
  /api/v1/dashboard/activity:
    get:
      summary: Dashboard Activity
      description: >-
        Recent-activity feed - a unified, newest-first log of memory events.


        Every event is derived from existing rows (memory_records,
        project_sources,

        sip_telemetry); no event-log table exists. ``limit`` caps the merged
        feed

        (default 15, max 50).


        # IDOR AUDIT PASS - the helper filters every underlying query by
        auth.user_id.
      operationId: dashboard_activity_api_v1_dashboard_activity_get
      parameters:
        - in: query
          name: limit
          required: false
          schema:
            default: 15
            maximum: 50
            minimum: 1
            title: Limit
            type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ActivityResponse'
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
components:
  schemas:
    ActivityResponse:
      properties:
        items:
          items:
            $ref: '#/components/schemas/ActivityItem'
          title: Items
          type: array
      required:
        - items
      title: ActivityResponse
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ActivityItem:
      properties:
        project_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Project Id
        ref_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Ref Id
        summary:
          title: Summary
          type: string
        timestamp:
          title: Timestamp
          type: integer
        type:
          title: Type
          type: string
      required:
        - type
        - timestamp
        - summary
        - project_id
        - ref_id
      title: ActivityItem
      type: object
    ValidationError:
      properties:
        ctx:
          title: Context
          type: object
        input:
          title: Input
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
  securitySchemes:
    EDNApiKey:
      description: >-
        EDN API key presented as 'Bearer <key>' in the Authorization header.
        Create and manage keys from the Console.
      in: header
      name: Authorization
      type: apiKey

````