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

# List Workflow Executions

> List execution history for a single workflow. Subworkflow child executions are intentionally excluded.



## OpenAPI

````yaml GET /v1/workflows/{id}/executions
openapi: 3.1.0
info:
  title: Beltic Workflow API
  version: 1.0.0
  description: >-
    # Workflow API


    The Beltic Workflow API runs configurable workflows that orchestrate Beltic
    verification services (identity, business, document, screening, website
    check) along with HTTP requests, AI completions, and human-in-the-loop
    steps.


    ## Key Features


    - **Run workflows**: Submit a workflow for execution against the deployed or
    draft state

    - **List workflows**: Discover available workflows in your organization

    - **Inspect executions**: List recent executions across all workflows or for
    a specific workflow, including status, output verdicts, and paused-block
    metadata


    ## Authentication


    Most requests authenticate with a Bearer JWT obtained from your Beltic
    session, but server-to-server callers may also use an API key. The API key
    implies the calling organization and workflow environment.


    **Bearer JWT (default):**

    ```

    Authorization: Bearer YOUR_JWT

    ```


    **API key (server-to-server):**

    ```

    x-api-key: YOUR_API_KEY

    ```


    ## Response Format


    Responses are plain JSON (not JSON:API). Error responses have the shape `{
    "error": string, "code"?: string, "details"?: ... }`.
  contact:
    name: Beltic API Support
    email: engineering@beltic.com
servers:
  - url: https://api.beltic.com
    description: Production
security:
  - BearerAuth: []
  - ApiKeyAuth: []
tags:
  - name: Workflows
    description: List workflows and retrieve workflow-scoped execution history.
  - name: Executions
    description: Start workflow executions and list execution history across all workflows.
externalDocs:
  description: Beltic Platform Documentation
  url: https://docs.beltic.com
paths:
  /v1/workflows/{id}/executions:
    get:
      tags:
        - Workflows
      summary: List executions for a workflow
      description: >-
        List execution history for a single workflow. Subworkflow child
        executions are intentionally excluded.
      parameters:
        - name: id
          in: path
          required: true
          description: Workflow ID.
          schema:
            type: string
      responses:
        '200':
          description: List of executions for the workflow.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/WorkflowExecutionSummary'
        '401':
          description: Authentication failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Caller lacks the `workflows:executions:read` permission.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Workflow not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Server error.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - BearerAuth: []
        - ApiKeyAuth: []
components:
  schemas:
    WorkflowExecutionSummary:
      type: object
      description: >-
        Execution summary returned by `GET /v1/workflows/{id}/executions`.
        Subworkflow child executions are excluded.
      required:
        - executionId
        - status
        - updatedAt
      properties:
        executionId:
          type: string
        status:
          $ref: '#/components/schemas/ExecutionStatus'
        result:
          type: object
          description: Execution result payload, when available.
          additionalProperties: true
          nullable: true
        updatedAt:
          type: string
          format: date-time
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: string
          description: Human-readable error message.
        code:
          type: string
          description: Machine-readable error code, when available.
    ExecutionStatus:
      type: string
      enum:
        - completed
        - failed
        - paused
        - cancelled
      description: Terminal or paused status of a workflow execution.
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Beltic-issued JWT bearer token.
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        Workflow API key. The key identifies the calling organization and
        workflow environment.

````