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

# List per-source NER confidence thresholds

> Returns all per-source confidence threshold configurations. Thresholds control whether a detected entity is auto-confirmed, queued for review, or silently rejected.



## OpenAPI

````yaml /api-reference/memory-api.json get /v1/memory/ner-review/thresholds
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/ner-review/thresholds:
    get:
      tags:
        - ner-review
        - ner-review-queue
      summary: List per-source NER confidence thresholds
      description: >-
        Returns all per-source confidence threshold configurations. Thresholds
        control whether a detected entity is auto-confirmed, queued for review,
        or silently rejected.
      operationId: list_thresholds_v1_memory_ner_review_thresholds_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/SourceThresholdConfig'
                type: array
                title: Response List Thresholds V1 Memory Ner Review Thresholds Get
components:
  schemas:
    SourceThresholdConfig:
      properties:
        source_type:
          $ref: '#/components/schemas/ReviewSourceType'
        auto_confirm_threshold:
          type: number
          maximum: 1
          minimum: 0
          title: Auto Confirm Threshold
          description: Confidence >= this → auto-confirm (skip queue).
          default: 0.85
        review_threshold:
          type: number
          maximum: 1
          minimum: 0
          title: Review Threshold
          description: Confidence >= this → enter review queue. Below → reject.
          default: 0.5
        updated_at:
          type: string
          format: date-time
          title: Updated At
      type: object
      required:
        - source_type
      title: SourceThresholdConfig
      description: |-
        Per-source NER confidence thresholds (row in ner_source_thresholds).

        Attributes:
            source_type:             The unstructured source these thresholds apply to.
            auto_confirm_threshold:  Tags at or above this confidence are confirmed
                                     automatically without entering the review queue.
            review_threshold:        Tags at or above this threshold (but below
                                     auto_confirm_threshold) enter the review queue.
                                     Tags below this threshold are silently rejected.
            updated_at:              UTC timestamp of last modification.
    ReviewSourceType:
      type: string
      enum:
        - slack
        - confluence
        - gdrive
        - meeting_transcript
        - email
        - notion
      title: ReviewSourceType
      description: |-
        Unstructured-data source types that feed the review queue.

        Structured sources (CRM, ERP) use deterministic entity resolution and
        do not produce review queue items.

````