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

> List top-level workflow executions across all workflows in the caller's organization and environment, ordered newest first. Subworkflow child executions are intentionally excluded.



## OpenAPI

````yaml GET /v1/workflows/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/executions:
    get:
      tags:
        - Executions
      summary: List recent executions
      description: >-
        List top-level workflow executions across all workflows in the caller's
        organization and environment, ordered newest first. Subworkflow child
        executions are intentionally excluded.
      parameters:
        - name: limit
          in: query
          required: false
          description: Maximum number of executions to return. Defaults to `100`.
          schema:
            type: integer
            minimum: 1
            default: 100
      responses:
        '200':
          description: List of execution summaries.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ExecutionLogSummary'
        '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'
        '500':
          description: Server error.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - BearerAuth: []
        - ApiKeyAuth: []
components:
  schemas:
    ExecutionLogSummary:
      type: object
      description: >-
        Top-level execution summary returned by `GET /v1/workflows/executions`.
        Subworkflow child executions are excluded.
      required:
        - executionId
        - workflowId
        - status
        - updatedAt
        - metadata
      properties:
        executionId:
          type: string
        workflowId:
          type: string
        status:
          $ref: '#/components/schemas/ExecutionStatus'
        updatedAt:
          type: string
          format: date-time
        metadata:
          type: object
          required:
            - filenames
            - pausedBlocks
            - verdict
          properties:
            filenames:
              type: array
              description: Filenames of files uploaded as part of this execution.
              items:
                type: string
            pausedBlocks:
              type: array
              description: >-
                Block types currently paused. Empty unless `status ===
                "paused"`.
              items:
                type: object
                required:
                  - blockType
                properties:
                  blockType:
                    type: string
            verdict:
              type: object
              description: >-
                Verdict payload extracted from completed block logs. Empty
                object unless `status === "completed"`.
              additionalProperties: true
    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.

````