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

# Get Workflow Run Status

> Get the current status of a workflow run job. Use this to poll for completion after starting a workflow via POST /workflows/run. Recommended polling interval: 5–10 seconds.



## OpenAPI

````yaml get /api/v2/workflows/run/status
openapi: 3.0.0
info:
  version: 1.0.0
  title: Octave API
  description: API for Octave workspace management and AI-powered content generation
servers:
  - url: https://app.octavehq.com
security:
  - ApiKeyAuth: []
paths:
  /api/v2/workflows/run/status:
    get:
      tags:
        - Workflow
      summary: Get Workflow Run Status
      description: >-
        Get the current status of a workflow run job. Use this to poll for
        completion after starting a workflow via POST /workflows/run.
        Recommended polling interval: 5–10 seconds.
      operationId: getWorkflowRunStatus
      parameters:
        - schema:
            type: string
            minLength: 1
            description: The OId of the workflow run job to check status for
            example: bsjob_3rgkoHhR00cEdE9DjKeIK
          required: true
          name: jobOId
          in: query
      responses:
        '200':
          description: Workflow run status
          content:
            application/json:
              schema:
                type: object
                properties:
                  _metadata:
                    $ref: '#/components/schemas/Metadata'
                  data:
                    type: object
                    properties:
                      jobOId:
                        type: string
                        description: The OId of the job
                      status:
                        type: string
                        enum:
                          - PENDING
                          - RUNNING
                          - PAUSED
                          - COMPLETED
                          - FAILED
                          - CANCELLED
                        description: >-
                          Current job status: PENDING, RUNNING, PAUSED,
                          COMPLETED, FAILED, or CANCELLED
                      totalCount:
                        type: number
                        description: Total number of items to process
                      processedCount:
                        type: number
                        description: Number of items processed so far
                      successCount:
                        type: number
                        description: Number of items that succeeded
                      failedCount:
                        type: number
                        description: Number of items that failed
                      startedAt:
                        type: string
                        nullable: true
                        description: When the job started processing
                      completedAt:
                        type: string
                        nullable: true
                        description: When the job reached a terminal state
                      createdAt:
                        type: string
                        nullable: true
                        description: When the job was created
                      workflowOId:
                        type: string
                        nullable: true
                        description: The OId of the workflow that was executed
                      callbackUrl:
                        type: string
                        nullable: true
                        description: The callback URL if one was provided
                      circuitBreakerReason:
                        type: string
                        nullable: true
                        description: Reason for circuit breaker pause, if applicable
                    required:
                      - jobOId
                      - status
                      - totalCount
                      - processedCount
                      - successCount
                      - failedCount
                      - startedAt
                      - completedAt
                      - createdAt
                      - workflowOId
                required:
                  - _metadata
                  - data
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                type: object
                properties:
                  _metadata:
                    $ref: '#/components/schemas/Metadata'
                  message:
                    type: string
                required:
                  - _metadata
                  - message
        '404':
          description: Job not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  _metadata:
                    $ref: '#/components/schemas/Metadata'
                  message:
                    type: string
                required:
                  - _metadata
                  - message
      deprecated: false
components:
  schemas:
    Metadata:
      type: object
      properties:
        usage:
          type: number
          default: 0
          description: API usage
          example: 0
        requestId:
          type: string
          description: Request ID
          example: requestId
        message:
          type: string
          description: Message
          example: message
        timestamp:
          type: string
          description: Timestamp
          example: '2021-01-01T00:00:00.000Z'
      required:
        - requestId
        - timestamp
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: api_key

````