> ## 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 details

> Get workflow execution details by ID



## OpenAPI

````yaml get /api/v1/executions/{executionId}
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}:
    get:
      description: Get workflow execution details by ID
      operationId: getApiV1Executions:executionId
      parameters:
        - in: path
          name: executionId
          schema:
            type: string
            pattern: ^exe_[a-f0-9]{12}$
          required: true
      responses:
        '200':
          description: Execution details
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - Queued
                      - Processing
                      - Failed
                      - Completed
                  id:
                    type: string
                  createdAt:
                    type: string
                  ownerId:
                    type: string
                  workflowId:
                    type: string
                  workflowName:
                    type: string
                  fileId:
                    type: string
                  fileName:
                    type: string
                  jobId:
                    anyOf:
                      - type: string
                      - type: 'null'
                  errorMessage:
                    anyOf:
                      - type: string
                      - type: 'null'
                  startedAt:
                    type: string
                  completedAt:
                    anyOf:
                      - type: string
                      - type: 'null'
                  extractedData:
                    path: /api/internal/auth-callback
                required:
                  - status
                  - id
                  - createdAt
                  - ownerId
                  - workflowId
                  - workflowName
                  - fileId
                  - fileName
                  - jobId
                  - errorMessage
                  - startedAt
                  - completedAt
                  - extractedData
        '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

````