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

# List All Sync Run Summaries

> Return aggregated per-run summaries across all users (admin view).

Supports optional filtering by user_id, provider, status, and source.



## OpenAPI

````yaml https://api.openwearables.io/openapi.json get /api/v1/sync/runs
openapi: 3.1.0
info:
  title: Open Wearables API
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/sync/runs:
    get:
      tags:
        - 'External: Sync Status'
      summary: List All Sync Run Summaries
      description: |-
        Return aggregated per-run summaries across all users (admin view).

        Supports optional filtering by user_id, provider, status, and source.
      operationId: list_all_sync_run_summaries_api_v1_sync_runs_get
      parameters:
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 10000
            minimum: 1
            default: 50
            title: Limit
        - name: user_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: uuid
              - type: 'null'
            description: Filter by user ID.
            title: User Id
          description: Filter by user ID.
        - name: provider
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by provider name.
            title: Provider
          description: Filter by provider name.
        - name: status
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by status.
            title: Status
          description: Filter by status.
        - name: source
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by source.
            title: Source
          description: Filter by source.
        - name: X-Open-Wearables-API-Key
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Open-Wearables-Api-Key
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SyncRunSummary'
                title: Response List All Sync Run Summaries Api V1 Sync Runs Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - OAuth2PasswordBearer: []
components:
  schemas:
    SyncRunSummary:
      properties:
        run_id:
          type: string
          title: Run Id
        user_id:
          type: string
          format: uuid
          title: User Id
        provider:
          type: string
          title: Provider
        source:
          type: string
          title: Source
        stage:
          type: string
          title: Stage
        status:
          type: string
          title: Status
        message:
          anyOf:
            - type: string
            - type: 'null'
          title: Message
        progress:
          anyOf:
            - type: number
            - type: 'null'
          title: Progress
        items_processed:
          anyOf:
            - type: integer
            - type: 'null'
          title: Items Processed
        items_total:
          anyOf:
            - type: integer
            - type: 'null'
          title: Items Total
        error:
          anyOf:
            - type: string
            - type: 'null'
          title: Error
        primary_user_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Primary User Id
        started_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Started At
        ended_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Ended At
        last_update:
          type: string
          format: date-time
          title: Last Update
      type: object
      required:
        - run_id
        - user_id
        - provider
        - source
        - stage
        - status
        - last_update
      title: SyncRunSummary
      description: Latest known status for a sync run, derived from the event stream.
    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:
    OAuth2PasswordBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: /api/v1/auth/login

````