> ## 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 Sync Run Summaries

> Return aggregated per-run summaries for recent sync activity.



## OpenAPI

````yaml https://api.openwearables.io/openapi.json get /api/v1/users/{user_id}/sync/runs
openapi: 3.1.0
info:
  title: Open Wearables API
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/users/{user_id}/sync/runs:
    get:
      tags:
        - 'External: Sync Status'
      summary: List Sync Run Summaries
      description: Return aggregated per-run summaries for recent sync activity.
      operationId: list_sync_run_summaries_api_v1_users__user_id__sync_runs_get
      parameters:
        - name: user_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: User Id
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 200
            minimum: 1
            default: 20
            title: Limit
        - 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 Sync Run Summaries Api V1 Users  User Id  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

````