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

# Organization Sync Status

> Returns an overview of the sync status for your organization, including searchable-aware document counts and recent sync job history.



## OpenAPI

````yaml GET /v1/status/sync
openapi: 3.0.1
info:
  title: LinqAlpha API
  description: >-
    Linq helps finance professionals make informed decisions using
    Retrieval-Augmented Generation (RAG)-enhanced answers. By leveraging
    cutting-edge Large Language Models (LLM) and supplementary technology, Linq
    provides the most optimized responses based on your queries.
  version: 1.0.0
  license:
    name: MIT
servers:
  - url: https://api.linqalpha.com
security:
  - ApiKeyAuth: []
tags:
  - name: Search
    description: Search and generate responses
  - name: Data
    description: Data retrieval and mapping
  - name: Feedback
    description: Conversation feedback
  - name: RMS
    description: Research Management System
  - name: Source Management
    description: Source batch and file management
  - name: MCP
    description: >-
      LinqAlpha MCP — Financial data tools for AI assistants via Model Context
      Protocol
  - name: Connectors
    description: Customer Connectors — customer-owned MCP connector management
  - name: Briefing
    description: Briefing Agent — automated market briefings with scheduling and delivery
  - name: Status
    description: Sync status — check organization, document, and container sync progress
paths:
  /v1/status/sync:
    get:
      tags:
        - Status
      summary: Organization sync status
      description: >-
        Returns an overview of the sync status for your organization, including
        searchable-aware document counts and recent sync job history.
      parameters:
        - name: organization_id
          in: query
          description: >-
            Organization ID. Optional for single-org API keys (inferred from
            key).
          required: false
          schema:
            type: string
      responses:
        '200':
          description: Sync status overview
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    nullable: true
                  payload:
                    type: object
                    properties:
                      organization_name:
                        type: string
                      is_syncing:
                        type: boolean
                        description: True if an active job hasn't passed indexing yet
                      current_job_id:
                        type: string
                        nullable: true
                      last_sync_time:
                        type: string
                        nullable: true
                        description: ISO 8601
                      total_items:
                        type: integer
                      synced_items:
                        type: integer
                        description: >-
                          Searchable documents (includes docs with failed base
                          status but past indexing)
                      failed_items:
                        type: integer
                      recent_syncs:
                        type: array
                        items:
                          type: object
                          properties:
                            started_at:
                              type: string
                            completed_at:
                              type: string
                              nullable: true
                            status:
                              type: string
                              enum:
                                - pending
                                - running
                                - complete
              example:
                error: null
                payload:
                  organization_name: Acme Research
                  is_syncing: false
                  current_job_id: null
                  last_sync_time: '2026-04-08T03:01:01'
                  total_items: 10017
                  synced_items: 10010
                  failed_items: 7
                  recent_syncs:
                    - started_at: '2026-04-08T02:00:39'
                      completed_at: '2026-04-08T03:01:01'
                      status: complete
                    - started_at: '2026-04-07T02:00:20'
                      completed_at: '2026-04-07T03:11:17'
                      status: complete
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY

````