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

# Get in-process synchronization status



## OpenAPI

````yaml /reference/openapi.yaml get /dashboard/sync
openapi: 3.1.0
info:
  title: Oynk Activity API
  version: 1.1.0
  description: >-
    Read-only aggregate onchain and privacy-safe offchain settlement activity,
    plus restricted synchronization operations.
servers:
  - url: /api
security: []
paths:
  /dashboard/sync:
    get:
      summary: Get in-process synchronization status
      responses:
        '200':
          description: Synchronization status
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SyncStatus'
components:
  schemas:
    SyncStatus:
      type: object
      required:
        - state
        - startedAt
        - completedAt
        - successfulChains
        - failedChains
      properties:
        state:
          type: string
          enum:
            - IDLE
            - RUNNING
            - COMPLETED
            - PARTIAL
            - FAILED
        startedAt:
          type:
            - string
            - 'null'
          format: date-time
        completedAt:
          type:
            - string
            - 'null'
          format: date-time
        successfulChains:
          type: array
          items:
            type: string
            enum:
              - BSC
              - SOLANA
        failedChains:
          type: array
          items:
            type: string
            enum:
              - BSC
              - SOLANA

````