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

# Get Workflow Run Status

> Get status and results of a workflow run.

Returns status info while running, and includes paginated results when completed.

- **workflow_run_id**: The workflow run ID from the execute endpoint
- **page**: Page number for results (default: 1)
- **page_size**: Number of records per page (default: 50, max: 1000)



## OpenAPI

````yaml /api-reference/openapi.json get /public/workflows/runs/{workflow_run_id}
openapi: 3.1.0
info:
  title: Rastro Public API
  description: >-
    Public API for enrichment, catalog management, workflows, activities,
    snapshots, taxonomy, and MCP integrations.
  version: 0.1.0
servers:
  - url: https://catalogapi.rastro.ai/api
security:
  - bearerAuth: []
paths:
  /public/workflows/runs/{workflow_run_id}:
    get:
      tags:
        - Flows
      summary: Get Workflow Run Status
      description: >-
        Get status and results of a workflow run.


        Returns status info while running, and includes paginated results when
        completed.


        - **workflow_run_id**: The workflow run ID from the execute endpoint

        - **page**: Page number for results (default: 1)

        - **page_size**: Number of records per page (default: 50, max: 1000)
      operationId: get_workflow_run_status_api_public_workflows_runs__workflow_run_id__get
      parameters:
        - name: workflow_run_id
          in: path
          required: true
          schema:
            type: string
            title: Workflow Run Id
        - name: page
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            default: 1
            title: Page
        - name: page_size
          in: query
          required: false
          schema:
            type: integer
            maximum: 1000
            minimum: 1
            default: 50
            title: Page Size
        - name: X-Organization-Id
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Organization-Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicWorkflowRunStatus'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - bearerAuth: []
components:
  schemas:
    PublicWorkflowRunStatus:
      properties:
        workflow_run_id:
          type: string
          title: Workflow Run Id
        workflow_id:
          type: string
          title: Workflow Id
        workflow_name:
          type: string
          title: Workflow Name
        workflow_url:
          type: string
          title: Workflow Url
        status:
          type: string
          title: Status
        progress:
          type: number
          title: Progress
        current_step:
          type: string
          title: Current Step
        message:
          type: string
          title: Message
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
        completed_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Completed At
        updates:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Updates
        results:
          anyOf:
            - $ref: '#/components/schemas/PaginatedResults'
            - type: 'null'
        node_results:
          anyOf:
            - additionalProperties:
                $ref: '#/components/schemas/PublicNodeOutputs'
              type: object
            - type: 'null'
          title: Node Results
      type: object
      required:
        - workflow_run_id
        - workflow_id
        - workflow_name
        - workflow_url
        - status
        - progress
        - current_step
        - message
        - created_at
        - updated_at
        - completed_at
        - updates
        - results
        - node_results
      title: PublicWorkflowRunStatus
      description: Status and results of a workflow run
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    PaginatedResults:
      properties:
        data:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Data
        total:
          type: integer
          title: Total
        page:
          type: integer
          title: Page
        page_size:
          type: integer
          title: Page Size
        has_more:
          type: boolean
          title: Has More
      type: object
      required:
        - data
        - total
        - page
        - page_size
        - has_more
      title: PaginatedResults
      description: Paginated result set
    PublicNodeOutputs:
      properties:
        node_type:
          type: string
          title: Node Type
        data:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Data
        total:
          type: integer
          title: Total
        page:
          type: integer
          title: Page
        page_size:
          type: integer
          title: Page Size
        has_more:
          type: boolean
          title: Has More
      type: object
      required:
        - node_type
        - data
        - total
        - page
        - page_size
        - has_more
      title: PublicNodeOutputs
      description: Outputs from a single node (paginated)
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Rastro API key or user token

````