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

# Get Sync Status

> Get current sync status for a connector source.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/knowledge-base/knowledge-bases/{kb_id}/sources/{source_id}/sync/status
openapi: 3.1.0
info:
  title: Feather API
  description: >-
    Unified customer experience platform API. Manages identity, conversations,
    memory, agents, procedures, policies, model routing, knowledge bases,
    integrations, and runtime execution.
  version: 1.21.0
servers:
  - url: https://api-sandbox.featherhq.com
    description: Sandbox
  - url: http://localhost:8000
    description: Local dev
security: []
paths:
  /v1/knowledge-base/knowledge-bases/{kb_id}/sources/{source_id}/sync/status:
    get:
      tags:
        - knowledge-base-connectors
      summary: Get Sync Status
      description: Get current sync status for a connector source.
      operationId: >-
        get_sync_status_v1_knowledge_base_knowledge_bases__kb_id__sources__source_id__sync_status_get
      parameters:
        - name: kb_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Kb Id
        - name: source_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Source Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SyncStatusResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    SyncStatusResponse:
      properties:
        source_id:
          type: string
          format: uuid
          title: Source Id
        source_status:
          type: string
          title: Source Status
        last_sync_job_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Last Sync Job Id
        last_sync_status:
          anyOf:
            - type: string
            - type: 'null'
          title: Last Sync Status
        last_sync_started_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Last Sync Started At
        last_sync_completed_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Last Sync Completed At
        total_items:
          anyOf:
            - type: integer
            - type: 'null'
          title: Total Items
        processed_count:
          anyOf:
            - type: integer
            - type: 'null'
          title: Processed Count
        error_message:
          anyOf:
            - type: string
            - type: 'null'
          title: Error Message
      type: object
      required:
        - source_id
        - source_status
      title: SyncStatusResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    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
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````