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

# Read workflow run progress and frozen evidence



## OpenAPI

````yaml /api-reference/platform-api.json get /v2/workflows/runs/{id}
openapi: 3.0.0
info:
  title: Range Platform API
  description: >-
    The Range Platform API for workspace management, counterparties, and
    operational tooling.
  version: 1.7.27
  contact: {}
servers:
  - url: https://api.range.org
    description: Range API Server
security:
  - Authorization: []
  - Authorization: []
tags:
  - name: Address Information
    description: Get information about a crypto address.
  - name: Transfer Enrichments
    description: Attach workspace-scoped notes and categories to transfers.
  - name: Counterparties
    description: Manage external entities, their addresses, bank accounts, and documents.
paths:
  /v2/workflows/runs/{id}:
    get:
      tags:
        - Workflows
      summary: Read workflow run progress and frozen evidence
      operationId: get
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WorkflowRunDetailDto'
components:
  schemas:
    WorkflowRunDetailDto:
      type: object
      properties:
        id:
          type: string
          format: uuid
        workflow_id:
          type: string
          format: uuid
        occurrence_at:
          type: string
          nullable: true
          format: date-time
        rerun_of:
          type: string
          nullable: true
          format: uuid
        requested_cutoff:
          format: date-time
          type: string
          description: >-
            Inclusive observation bound; period.end is the exclusive end of the
            stored half-open period.
        execution_status:
          type: string
          enum:
            - queued
            - running
            - succeeded
            - failed
            - cancelled
            - skipped
        tx_sync_status:
          type: string
          enum:
            - not_applicable
            - waiting
            - completed
            - expired
        delivery_status:
          type: string
          enum:
            - not_required
            - pending
            - sending
            - sent
            - failed
            - cancelled
        created_at:
          format: date-time
          type: string
        cases:
          type: array
          items:
            $ref: '#/components/schemas/WorkflowRunCaseDto'
        period:
          $ref: '#/components/schemas/WorkflowRunPeriodDto'
        output:
          nullable: true
          type: object
          allOf:
            - $ref: '#/components/schemas/WorkflowRunOutputDto'
        sync:
          nullable: true
          description: >-
            Frozen transaction-sync evidence. A daily definition that requires
            sync should schedule at the end of its local day; an earlier
            occurrence remains parked until that day reaches its cutoff.
          type: object
          allOf:
            - $ref: '#/components/schemas/WorkflowRunSyncDto'
        evidence:
          type: object
          additionalProperties: true
        warnings:
          type: array
          items:
            type: string
        reason:
          type: string
          nullable: true
      required:
        - id
        - workflow_id
        - occurrence_at
        - rerun_of
        - requested_cutoff
        - execution_status
        - tx_sync_status
        - delivery_status
        - created_at
        - cases
        - period
        - output
        - sync
        - evidence
        - warnings
        - reason
    WorkflowRunCaseDto:
      type: object
      properties:
        id:
          type: string
          format: uuid
        kind:
          type: string
          enum:
            - execution
            - delivery
      required:
        - id
        - kind
    WorkflowRunPeriodDto:
      type: object
      properties:
        start:
          type: string
        end:
          type: string
        label:
          type: string
      required:
        - start
        - end
        - label
    WorkflowRunOutputDto:
      type: object
      properties:
        filename:
          type: string
        content_type:
          type: string
        format:
          type: string
      required:
        - filename
        - content_type
        - format
    WorkflowRunSyncDto:
      type: object
      properties:
        requested_at:
          type: string
        settled_at:
          type: string
        expired_at:
          type: string
        accounts:
          type: object
          additionalProperties:
            $ref: '#/components/schemas/WorkflowRunSyncAccountDto'
      required:
        - accounts
    WorkflowRunSyncAccountDto:
      type: object
      properties:
        outcome:
          type: string
          enum:
            - fresh
            - unavailable
            - unsettled
        reason:
          type: string
          enum:
            - provider_region_unsupported
            - account_unsupported
        sync_started_at:
          type: string
          nullable: true
      required:
        - outcome
        - sync_started_at
  securitySchemes:
    Authorization:
      type: apiKey
      in: header
      name: X-API-KEY
      description: Authorization method required to allow user to access the api endpoints.

````