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

# Get workflow run status

> Retrieves the status of a workflow run by its ID



## OpenAPI

````yaml api-docs/app-team/arc.json get /v1/arc/example-workflow/{runId}
openapi: 3.1.1
info:
  title: Arc API
  version: 1.0.0
  description: >-
    Arc API supporting the k0rdent Enterprise arc console for managing
    Kubernetes clusters and applications
servers:
  - url: http://localhost:4005
    description: Local Development
security: []
paths:
  /v1/arc/example-workflow/{runId}:
    get:
      tags:
        - Workflows
      summary: Get workflow run status
      description: Retrieves the status of a workflow run by its ID
      parameters:
        - schema:
            type: string
            description: The workflow run ID
          required: true
          description: The workflow run ID
          name: runId
          in: path
      responses:
        '200':
          description: Workflow status retrieved
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - true
                  data:
                    type: object
                    properties:
                      id:
                        type: string
                      type:
                        type: string
                      status:
                        type: string
                      startedAt:
                        type: string
                      completedAt:
                        type: string
                      durationMs:
                        type: number
                    required:
                      - id
                      - type
                      - status
                  meta:
                    type: object
                    properties:
                      requestId:
                        type: string
                      timestamp:
                        type: string
                    required:
                      - requestId
                      - timestamp
                required:
                  - success
                  - data
                  - meta
        '404':
          description: Workflow run not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - false
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                      details:
                        type: object
                        additionalProperties:
                          nullable: true
                    required:
                      - code
                      - message
                  meta:
                    type: object
                    properties:
                      requestId:
                        type: string
                      timestamp:
                        type: string
                    required:
                      - requestId
                      - timestamp
                required:
                  - success
                  - error
                  - meta

````