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

> Needs-attention queue - actionable counts the dashboard renders as a list.

stale_records, unconfirmed_inferred (AI_INFERRED), and failed_sources, plus
a total for the badge. Contradictions are out of scope (no detection logic
exists yet) and are deliberately not fabricated.

# IDOR AUDIT PASS - the helper scopes every count to auth.user_id.



## OpenAPI

````yaml get /api/v1/dashboard/attention
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/attention:
    get:
      summary: Dashboard Attention
      description: >-
        Needs-attention queue - actionable counts the dashboard renders as a
        list.


        stale_records, unconfirmed_inferred (AI_INFERRED), and failed_sources,
        plus

        a total for the badge. Contradictions are out of scope (no detection
        logic

        exists yet) and are deliberately not fabricated.


        # IDOR AUDIT PASS - the helper scopes every count to auth.user_id.
      operationId: dashboard_attention_api_v1_dashboard_attention_get
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AttentionResponse'
          description: Successful Response
components:
  schemas:
    AttentionResponse:
      properties:
        items:
          items:
            $ref: '#/components/schemas/AttentionItem'
          title: Items
          type: array
        total:
          title: Total
          type: integer
      required:
        - items
        - total
      title: AttentionResponse
      type: object
    AttentionItem:
      properties:
        count:
          title: Count
          type: integer
        key:
          title: Key
          type: string
        label:
          title: Label
          type: string
      required:
        - key
        - label
        - count
      title: AttentionItem
      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

````