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

# Get execution status

> Get workflow execution status by ID



## OpenAPI

````yaml get /api/v1/executions/{executionId}/status
openapi: 3.1.0
info:
  title: PaperJet API
  description: Secure document extraction API
  version: 1.0.0
servers:
  - url: https://app.getpaperjet.com
    description: Production Server
security:
  - apiKeyAuth: []
paths:
  /api/v1/executions/{executionId}/status:
    get:
      description: Get workflow execution status by ID
      operationId: getApiV1Executions:executionIdStatus
      parameters:
        - in: path
          name: executionId
          schema:
            type: string
            pattern: ^exe_[a-f0-9]{12}$
          required: true
      responses:
        '200':
          description: Execution status
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                  status:
                    type: string
                    enum:
                      - Queued
                      - Processing
                      - Failed
                      - Completed
                  workflowId:
                    type: string
                  fileId:
                    type: string
                  jobId:
                    anyOf:
                      - type: string
                      - type: 'null'
                  errorMessage:
                    anyOf:
                      - type: string
                      - type: 'null'
                  startedAt:
                    type: string
                  completedAt:
                    anyOf:
                      - type: string
                      - type: 'null'
                required:
                  - id
                  - status
                  - workflowId
                  - fileId
                  - jobId
                  - errorMessage
                  - startedAt
                  - completedAt
        '404':
          description: Execution not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
        '500':
          description: Error response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````