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

# Container Sync Status

> Returns per-container sync status with direct children IDs. At least one filter (path, name, or container_ids) is required.



## OpenAPI

````yaml GET /v1/status/containers
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/containers:
    get:
      tags:
        - Status
      summary: Container sync status
      description: >-
        Returns per-container sync status with direct children IDs. At least one
        filter (path, name, or container_ids) is required.
      parameters:
        - name: organization_id
          in: query
          description: Organization ID. Optional for single-org API keys.
          required: false
          schema:
            type: string
        - name: container_ids
          in: query
          description: Comma-separated container IDs.
          required: false
          schema:
            type: string
          example: container-id-1,container-id-2
        - name: path
          in: query
          description: Filter by path prefix.
          required: false
          schema:
            type: string
        - name: name
          in: query
          description: Filter by container name (partial, case-insensitive).
          required: false
          schema:
            type: string
      responses:
        '200':
          description: Container status list
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    nullable: true
                  payload:
                    type: array
                    items:
                      type: object
                      properties:
                        container_id:
                          type: string
                        container_name:
                          type: string
                        container_type:
                          type: string
                          nullable: true
                        status:
                          type: string
                        last_synced_at:
                          type: string
                          nullable: true
                        child_document_ids:
                          type: array
                          items:
                            type: string
                        child_container_ids:
                          type: array
                          items:
                            type: string
              example:
                error: null
                payload:
                  - container_id: 001e4e05-d690-4f0b-9ebd-3e58b91e5d6c
                    container_name: Q1 2026 Earnings
                    container_type: note
                    status: Synced
                    last_synced_at: '2026-04-08T02:04:56'
                    child_document_ids:
                      - doc-001
                      - doc-002
                    child_container_ids:
                      - 17fc814d-7d47-4f92-ac82-c970b45955fb
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY

````