> ## 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 sync freshness status for all operational sources



## OpenAPI

````yaml /api-reference/knowledge-api.json get /v1/knowledge/source-types/sync-status
openapi: 3.1.0
info:
  title: Strattum Knowledge API
  description: >-
    REST API that serves semantic document search — embeddings via the
    configured LLM provider, indexed in Qdrant, with metadata stored in
    PostgreSQL. (PRD-004, Workstream 1.4)
  version: 1.0.0
servers: []
security: []
paths:
  /v1/knowledge/source-types/sync-status:
    get:
      tags:
        - source-types
      summary: Get sync freshness status for all operational sources
      operationId: get_sync_status_v1_knowledge_source_types_sync_status_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SyncStatusResponse'
components:
  schemas:
    SyncStatusResponse:
      properties:
        sources:
          items:
            $ref: '#/components/schemas/SyncStatus'
          type: array
          title: Sources
      type: object
      required:
        - sources
      title: SyncStatusResponse
    SyncStatus:
      properties:
        source_type:
          type: string
          title: Source Type
        last_sync_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Last Sync At
        age_minutes:
          anyOf:
            - type: number
            - type: 'null'
          title: Age Minutes
        sla_minutes:
          type: integer
          title: Sla Minutes
        status:
          type: string
          title: Status
        records_processed:
          anyOf:
            - type: integer
            - type: 'null'
          title: Records Processed
      type: object
      required:
        - source_type
        - sla_minutes
        - status
      title: SyncStatus

````