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

# Get Workflow Run (Live Status)

> Get the live status and per-block progress for a workflow run.



## OpenAPI

````yaml https://api.sixtyfour.ai/openapi.json get /workflows/runs/{run_id}/live_status
openapi: 3.1.0
info:
  title: Sixtyfour API
  description: >-
    Intelligence API for People and Entities. Deploy AI agents that investigate,
    resolve identities, map relationships, and surface risk signals
  contact:
    name: Sixtyfour
    url: https://sixtyfour.ai/
    email: support@sixtyfour.ai
  license:
    name: Proprietary
  version: 1.0.0
servers:
  - url: https://api.sixtyfour.ai
    description: Production
security: []
tags:
  - name: Enrichment
    description: Find and enrich emails, phones, and LinkedIn for people and companies.
  - name: org-chart
    description: Discover people inside a company and build org charts.
  - name: Search
    description: Run deep and filter searches over Sixtyfour's data.
  - name: Workflow
    description: Create, run, and manage enrichment workflows.
  - name: Workflow Schedules
    description: Create and manage recurring schedules for workflows.
  - name: Account
    description: Manage and inspect your account and credit balance.
  - name: Intelligence
    description: Verify identity attributes such as age using high-tier OSINT research.
paths:
  /workflows/runs/{run_id}/live_status:
    get:
      tags:
        - Workflow
      summary: Get Workflow Run (Live Status)
      description: Get the live status and per-block progress for a workflow run.
      operationId: get_workflow_run_live_status_workflows_runs__run_id__live_status_get
      parameters:
        - name: run_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Run Id
        - name: x-api-key
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Api-Key
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WorkflowLiveStatusResponse'
        '400':
          description: Request was rejected by the route's validation rules.
          content:
            application/json:
              schema:
                type: object
                properties:
                  detail:
                    type: string
              example:
                detail: Invalid request body
        '401':
          description: Missing or invalid API key.
          content:
            application/json:
              schema:
                type: object
                properties:
                  detail:
                    type: string
              example:
                detail: Invalid API key
        '403':
          description: Caller does not have access to this workflow.
          content:
            application/json:
              schema:
                type: object
                properties:
                  detail:
                    type: string
              example:
                detail: Access denied
        '404':
          description: Workflow, run, or job not found.
          content:
            application/json:
              schema:
                type: object
                properties:
                  detail:
                    type: string
              example:
                detail: Workflow not found
        '409':
          description: Workflow with the supplied ID already exists.
          content:
            application/json:
              schema:
                type: object
                properties:
                  detail:
                    type: string
              example:
                detail: >-
                  Workflow with ID 0123abcd-1234-5678-9abc-def012345678 already
                  exists. Use update endpoint to modify existing workflows.
        '422':
          description: Request body failed validation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '500':
          description: Unexpected server error. Retry with backoff.
          content:
            application/json:
              schema:
                type: object
                properties:
                  detail:
                    type: string
              example:
                detail: Internal server error
components:
  schemas:
    WorkflowLiveStatusResponse:
      properties:
        run_id:
          type: string
          title: Run Id
          description: Workflow run identifier.
        workflow_id:
          type: string
          title: Workflow Id
          description: Workflow identifier.
        overall_status:
          type: string
          title: Overall Status
          description: 'Overall run status: queued, running, completed, or failed.'
        current_block:
          anyOf:
            - type: string
            - type: 'null'
          title: Current Block
          description: Name of the block currently executing.
        current_block_sequence:
          anyOf:
            - type: integer
            - type: 'null'
          title: Current Block Sequence
          description: Sequence number of the block currently executing.
        total_blocks:
          type: integer
          title: Total Blocks
          description: Total number of blocks in the workflow.
          default: 0
        completed_blocks:
          type: integer
          title: Completed Blocks
          description: Number of blocks that have finished.
          default: 0
        started_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Started At
          description: Timestamp when execution started.
        completed_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Completed At
          description: Timestamp when execution finished.
        last_updated:
          type: string
          title: Last Updated
          description: Timestamp of the last status update.
        blocks:
          items:
            $ref: '#/components/schemas/BlockLiveStatus'
          type: array
          title: Blocks
          description: Live status for each block in the run.
          default: []
        overall_progress_percentage:
          type: number
          title: Overall Progress Percentage
          description: Overall run progress (0-100).
          default: 0
        estimation_blocked_by:
          anyOf:
            - type: string
            - type: 'null'
          title: Estimation Blocked By
          description: Block name preventing a full progress estimate, if any.
      type: object
      required:
        - run_id
        - workflow_id
        - overall_status
        - last_updated
      title: WorkflowLiveStatusResponse
      description: Live status response for a single workflow run.
    HTTPValidationError:
      title: HTTPValidationError
      type: object
      properties:
        detail:
          type: array
          items:
            $ref: '#/components/schemas/ValidationError'
      example:
        detail:
          - loc:
              - body
              - target_company
              - domain
            msg: Field required
            type: missing
            input: null
            ctx: {}
    BlockLiveStatus:
      properties:
        block_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Block Id
          description: Block identifier within the workflow.
        block_name:
          type: string
          title: Block Name
          description: Registered block type name (e.g. 'enrich_lead', 'find_email').
        sequence_number:
          type: integer
          title: Sequence Number
          description: Position of the block in the workflow execution order.
        previous_block_ids:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Previous Block Ids
          description: IDs of upstream blocks that feed into this one.
        status:
          type: string
          title: Status
          description: 'Block status: pending, running, completed, or failed.'
        started_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Started At
          description: Timestamp when execution started.
        completed_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Completed At
          description: Timestamp when execution finished.
        progress_percentage:
          type: number
          title: Progress Percentage
          description: Block progress (0-100).
          default: 0
        current_step:
          anyOf:
            - type: string
            - type: 'null'
          title: Current Step
          description: Human-readable description of the current sub-step.
        processed_count:
          type: integer
          title: Processed Count
          description: Number of items processed so far.
          default: 0
        total_count:
          type: integer
          title: Total Count
          description: Total number of items to process.
          default: 0
        estimated_total_count:
          anyOf:
            - type: integer
            - type: 'null'
          title: Estimated Total Count
          description: Estimated total when an exact count isn't yet known.
        last_updated:
          type: string
          title: Last Updated
          description: Timestamp of the last status update.
        error_message:
          anyOf:
            - type: string
            - type: 'null'
          title: Error Message
          description: Error message if the operation failed.
        metrics:
          $ref: '#/components/schemas/BlockMetrics'
          description: Per-block execution metrics.
      type: object
      required:
        - block_name
        - sequence_number
        - status
        - last_updated
        - metrics
      title: BlockLiveStatus
      description: Live status for a single block within a workflow run.
    ValidationError:
      title: ValidationError
      type: object
      required:
        - loc
        - msg
        - type
      properties:
        loc:
          type: array
          items:
            oneOf:
              - type: string
              - type: integer
          description: Path to the field that failed validation.
          example:
            - body
            - target_company
            - domain
        msg:
          type: string
          description: Human-readable error message.
          example: Field required
        type:
          type: string
          description: Error code (e.g. 'missing', 'value_error').
          example: missing
        input:
          description: The offending input value (any type, may be null).
          nullable: true
          example: null
        ctx:
          type: object
          description: Optional error context.
          additionalProperties: true
          example: {}
    BlockMetrics:
      properties:
        row_count:
          type: integer
          title: Row Count
          description: Total rows produced by the block.
          default: 0
        dataframe_type:
          type: string
          title: Dataframe Type
          description: Logical row type produced (e.g. LEAD, COMPANY).
          default: LEAD
        processed_count:
          anyOf:
            - type: integer
            - type: 'null'
          title: Processed Count
          description: Number of items processed so far.
        total_count:
          anyOf:
            - type: integer
            - type: 'null'
          title: Total Count
          description: Total number of items to process.
      type: object
      title: BlockMetrics
      description: Metrics for a block execution.

````